summaryrefslogtreecommitdiff
path: root/Lib/test/test_fnmatch.py
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-09-20 21:33:42 +0000
committerFred Drake <fdrake@acm.org>2001-09-20 21:33:42 +0000
commitf1ee3e0fd4b19a36a3c2674f3034e2d69523c439 (patch)
tree15ec6fa1896c9e92ede7bb8b78fffcc55879b62c /Lib/test/test_fnmatch.py
parentfadc3568b2349da11025bc82a6573fe387a8c237 (diff)
downloadcpython-f1ee3e0fd4b19a36a3c2674f3034e2d69523c439.tar.gz
Change the PyUnit-based tests to use the test_main() approach. This
allows using the tests with unittest.py as a script. The tests will still run when run as a script themselves.
Diffstat (limited to 'Lib/test/test_fnmatch.py')
-rw-r--r--Lib/test/test_fnmatch.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/Lib/test/test_fnmatch.py b/Lib/test/test_fnmatch.py
index 9f089267ff..0bd7d6a96c 100644
--- a/Lib/test/test_fnmatch.py
+++ b/Lib/test/test_fnmatch.py
@@ -38,4 +38,9 @@ class FnmatchTestCase(unittest.TestCase):
check('\\', r'[!\]', 0)
-test_support.run_unittest(FnmatchTestCase)
+def test_main():
+ test_support.run_unittest(FnmatchTestCase)
+
+
+if __name__ == "__main__":
+ test_main()