diff options
Diffstat (limited to 'functional_tests/test_multiprocessing/test_class.py')
-rw-r--r-- | functional_tests/test_multiprocessing/test_class.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/functional_tests/test_multiprocessing/test_class.py b/functional_tests/test_multiprocessing/test_class.py new file mode 100644 index 0000000..d92710d --- /dev/null +++ b/functional_tests/test_multiprocessing/test_class.py @@ -0,0 +1,13 @@ +import os + +from test_multiprocessing import MPTestBase + + +#test case for #462 +class TestClassFixture(MPTestBase): + suitepath = os.path.join(os.path.dirname(__file__), 'support', 'class.py') + + def runTest(self): + assert str(self.output).strip().endswith('OK') + assert 'Ran 2 tests' in self.output + |