summaryrefslogtreecommitdiff
path: root/Lib/test/test_pkgimport.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
commit2e2be3760ccdfd4bdde4afdd66f4078022ba3b61 (patch)
treed1b7dce65ddcecf2f312acfdb319ba656e99c3a1 /Lib/test/test_pkgimport.py
parent6f7993765ac0989b5d13084240797913627a31d8 (diff)
downloadcpython-git-2e2be3760ccdfd4bdde4afdd66f4078022ba3b61.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_pkgimport.py')
-rw-r--r--Lib/test/test_pkgimport.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/Lib/test/test_pkgimport.py b/Lib/test/test_pkgimport.py
index 2f1950922f..72889f9708 100644
--- a/Lib/test/test_pkgimport.py
+++ b/Lib/test/test_pkgimport.py
@@ -75,4 +75,10 @@ class TestImport(unittest.TestCase):
reload(module)
self.assertEqual(getattr(module, var), 1)
-run_unittest(TestImport)
+
+def test_main():
+ run_unittest(TestImport)
+
+
+if __name__ == "__main__":
+ test_main()