pass
-class GenericTest(unittest.TestCase):
- # The path module to be tested
- pathmodule = genericpath
+class GenericTest:
common_attributes = ['commonprefix', 'getsize', 'getatime', 'getctime',
'getmtime', 'exists', 'isdir', 'isfile']
attributes = []
support.unlink(support.TESTFN)
safe_rmdir(support.TESTFN)
+class TestGenericTest(GenericTest, unittest.TestCase):
+ # Issue 16852: GenericTest can't inherit from unittest.TestCase
+ # for test discovery purposes; CommonTest inherits from GenericTest
+ # and is only meant to be inherited by others.
+ pathmodule = genericpath
# Following TestCase is not supposed to be run from test_genericpath.
# It is inherited by other test modules (macpath, ntpath, posixpath).
class CommonTest(GenericTest):
- # The path module to be tested
- pathmodule = None
common_attributes = GenericTest.common_attributes + [
# Properties
'curdir', 'pardir', 'extsep', 'sep',
self.test_abspath()
-def test_main():
- support.run_unittest(GenericTest)
-
-
if __name__=="__main__":
- test_main()
+ unittest.main()
self.assertEqual(normpath(b"a:b:"), b"a:b")
-class MacCommonTest(test_genericpath.CommonTest):
+class MacCommonTest(test_genericpath.CommonTest, unittest.TestCase):
pathmodule = macpath
-def test_main():
- support.run_unittest(MacPathTestCase, MacCommonTest)
-
-
if __name__ == "__main__":
- test_main()
+ unittest.main()
ntpath.sameopenfile(-1, -1)
-class NtCommonTest(test_genericpath.CommonTest):
+class NtCommonTest(test_genericpath.CommonTest, unittest.TestCase):
pathmodule = ntpath
attributes = ['relpath', 'splitunc']
-def test_main():
- support.run_unittest(TestNtpath, NtCommonTest)
-
-
if __name__ == "__main__":
unittest.main()
self.assertTrue(posixpath.sameopenfile(a.fileno(), b.fileno()))
-class PosixCommonTest(test_genericpath.CommonTest):
+class PosixCommonTest(test_genericpath.CommonTest, unittest.TestCase):
pathmodule = posixpath
attributes = ['relpath', 'samefile', 'sameopenfile', 'samestat']
-def test_main():
- support.run_unittest(PosixPathTest, PosixCommonTest)
-
-
if __name__=="__main__":
- test_main()
+ unittest.main()
Tests
-----
+- Issue #16852: test_genericpath, test_posixpath, test_ntpath, and test_macpath
+ now work with unittest test discovery. Patch by Zachary Ware.
+
- Issue #16748: test_heapq now works with unittest test discovery.
- Issue #15324: Fix regrtest parsing of --fromfile, --match, and --randomize