summaryrefslogtreecommitdiff
path: root/functional_tests/test_multiprocessing/test_class.py
diff options
context:
space:
mode:
authorSoonKyu Park <sk7.park@samsung.com>2016-04-11 16:35:26 +0900
committerSoonKyu Park <sk7.park@samsung.com>2016-04-11 16:35:26 +0900
commit4cd7d081275587835515bc22682f676fea864e81 (patch)
treeb49279a13b3a0b41bcca18f4484a47ded69fc046 /functional_tests/test_multiprocessing/test_class.py
parent8b9cd7463d1b86596ec1fe8bb6c8c83720919938 (diff)
parent0a5114f8292ee2aa0ea647830efd0b54fd753fd5 (diff)
downloadpython-nose-devel_psk_20160727.tar.gz
python-nose-devel_psk_20160727.tar.bz2
python-nose-devel_psk_20160727.zip
Change-Id: Icf86c49016177c41bc571c88a1f78f8238d698e2
Diffstat (limited to 'functional_tests/test_multiprocessing/test_class.py')
-rw-r--r--functional_tests/test_multiprocessing/test_class.py13
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
+