diff --git a/python/testData/testRunner/env/doc/test1.py b/python/testData/testRunner/env/doc/test1.py deleted file mode 100644 index 3fd0252bdd55..000000000000 --- a/python/testData/testRunner/env/doc/test1.py +++ /dev/null @@ -1,39 +0,0 @@ -def factorial(n): - """Return the factorial of n, an exact integer >= 0. - - If the result is small enough to fit in an int, return an int. - Else return a long. - - >>> [factorial(n) for n in range(6)] - [1, 1, 2, 6, 24, 120] - """ - - import math - if not n >= 0: - raise ValueError("n must be >= 0") - if math.floor(n) != n: - raise ValueError("n must be exact integer") - if n+1 == n: # catch a value like 1e300 - raise OverflowError("n too large") - result = 1 - factor = 2 - while factor <= n: - result *= factor - factor += 1 - return result - -class FirstGoodTest: - """ - >>> [factorial(n) for n in range(6)] - [1, 1, 2, 6, 24, 120] - """ - def test_passes(self): - pass - -class SecondGoodTest: - def test_passes(self): - """ - >>> [factorial(n) for n in range(6)] - [1, 1, 2, 6, 24, 120] - """ - pass \ No newline at end of file diff --git a/python/testData/testRunner/env/doc/test2.py b/python/testData/testRunner/env/doc/test2.py deleted file mode 100644 index e0c4619a94f6..000000000000 --- a/python/testData/testRunner/env/doc/test2.py +++ /dev/null @@ -1,39 +0,0 @@ -def factorial(n): - """Return the factorial of n, an exact integer >= 0. - - If the result is small enough to fit in an int, return an int. - Else return a long. - - >>> [factorial(n) for n in range(6)] - [1, 1, 2, 6, 24, 120] - """ - - import math - if not n >= 0: - raise ValueError("n must be >= 0") - if math.floor(n) != n: - raise ValueError("n must be exact integer") - if n+1 == n: # catch a value like 1e300 - raise OverflowError("n too large") - result = 1 - factor = 2 - while factor <= n: - result *= factor - factor += 1 - return result - -class FirstGoodTest: - """ - >>> [factorial(n) for n in range(6)] - [1, 1] - """ - def test_passes(self): - pass - -class SecondGoodTest: - def test_passes(self): - """ - >>> [factorial(n) for n in range(6)] - [1, 1, 2, 6] - """ - pass \ No newline at end of file diff --git a/python/testData/testRunner/env/nose/test1.py b/python/testData/testRunner/env/nose/test1.py deleted file mode 100644 index 972270f800a2..000000000000 --- a/python/testData/testRunner/env/nose/test1.py +++ /dev/null @@ -1,11 +0,0 @@ -#from unittest import TestCase - -class TestNose: - def testOne(self): - assert 4 == 2*2 - - def testTwo(self): - assert True - -def testThree(): - assert 4 == 2*2 diff --git a/python/testData/testRunner/env/nose/test2.py b/python/testData/testRunner/env/nose/test2.py deleted file mode 100644 index 0a6f80ec7644..000000000000 --- a/python/testData/testRunner/env/nose/test2.py +++ /dev/null @@ -1,18 +0,0 @@ -#from unittest import TestCase - -class TestNose: - 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 diff --git a/python/testData/testRunner/env/pytest/test1.py b/python/testData/testRunner/env/pytest/test1.py deleted file mode 100644 index 65016345eade..000000000000 --- a/python/testData/testRunner/env/pytest/test1.py +++ /dev/null @@ -1,9 +0,0 @@ -class TestPyTest: - def testOne(self): - assert 4 == 2*2 - - def testTwo(self): - assert True - -def testThree(): - assert 4 == 2*2 diff --git a/python/testData/testRunner/env/pytest/test2.py b/python/testData/testRunner/env/pytest/test2.py deleted file mode 100644 index b6c7b0887aa9..000000000000 --- a/python/testData/testRunner/env/pytest/test2.py +++ /dev/null @@ -1,16 +0,0 @@ -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 diff --git a/python/testData/testRunner/env/test1.py b/python/testData/testRunner/env/test1.py deleted file mode 100644 index 8b2daad79ca8..000000000000 --- a/python/testData/testRunner/env/test1.py +++ /dev/null @@ -1,8 +0,0 @@ -from unittest import TestCase - -class UTests(TestCase): - def testOne(self): - self.assertEqual(4, 2*2) - - def testTwo(self): - self.assertTrue(False or True) diff --git a/python/testData/testRunner/env/test2.py b/python/testData/testRunner/env/test2.py deleted file mode 100644 index c8195292d31a..000000000000 --- a/python/testData/testRunner/env/test2.py +++ /dev/null @@ -1,11 +0,0 @@ -from unittest import TestCase - -class UTests(TestCase): - def testOne(self): - self.assertEqual(5, 2*2) - - def testTwo(self): - self.assertTrue(False) - - def testThree(self): - self.assertTrue(True)