summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_importhooks.py
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2003-02-17 14:51:41 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2003-02-17 14:51:41 (GMT)
commit996acf122dbf8d9aa694a16a32ced065f5805cd2 (patch)
treeed565bdce871aff987c7918e7ae1f405d995a468 /Lib/test/test_importhooks.py
parent9e5d87fa2018a48921d0452850a1d2f0b9fafb1e (diff)
downloadcpython-996acf122dbf8d9aa694a16a32ced065f5805cd2.zip
cpython-996acf122dbf8d9aa694a16a32ced065f5805cd2.tar.gz
cpython-996acf122dbf8d9aa694a16a32ced065f5805cd2.tar.bz2
Actually run these tests from regrtest.py.
There was no test_main() and the main body was protected by if __name__ == '__main__' so the test didn't happen on import either.
Diffstat (limited to 'Lib/test/test_importhooks.py')
-rw-r--r--Lib/test/test_importhooks.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/test/test_importhooks.py b/Lib/test/test_importhooks.py
index 070b578..4191a17 100644
--- a/Lib/test/test_importhooks.py
+++ b/Lib/test/test_importhooks.py
@@ -199,6 +199,8 @@ class ImportHooksTestCase(ImportHooksBaseTestCase):
m = __import__(mname, globals(), locals(), ["__dummy__"])
m.__loader__ # to make sure we actually handled the import
+def test_main():
+ test_support.run_unittest(ImportHooksTestCase)
if __name__ == "__main__":
- test_support.run_unittest(ImportHooksTestCase)
+ test_main()