summaryrefslogtreecommitdiff
path: root/python/testData/testRunner/env/pytest/test2.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/testData/testRunner/env/pytest/test2.py')
-rw-r--r--python/testData/testRunner/env/pytest/test2.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/python/testData/testRunner/env/pytest/test2.py b/python/testData/testRunner/env/pytest/test2.py
new file mode 100644
index 000000000000..b6c7b0887aa9
--- /dev/null
+++ b/python/testData/testRunner/env/pytest/test2.py
@@ -0,0 +1,16 @@
+class TestPyTest:
+ def testOne(self):
+ assert 5 == 2*2
+
+ def testTwo(self):
+ assert True
+
+def testThree():
+ assert 4 == 2*2
+
+def test_evens():
+ for i in range(0, 5):
+ yield check_even, i, i*3
+
+def check_even(n, nn):
+ assert n % 2 == 0 or nn % 2 == 0 \ No newline at end of file