summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_binhex.py
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-09-20 21:33:42 (GMT)
committerFred Drake <fdrake@acm.org>2001-09-20 21:33:42 (GMT)
commit2e2be3760ccdfd4bdde4afdd66f4078022ba3b61 (patch)
treed1b7dce65ddcecf2f312acfdb319ba656e99c3a1 /Lib/test/test_binhex.py
parent6f7993765ac0989b5d13084240797913627a31d8 (diff)
downloadcpython-2e2be3760ccdfd4bdde4afdd66f4078022ba3b61.zip
cpython-2e2be3760ccdfd4bdde4afdd66f4078022ba3b61.tar.gz
cpython-2e2be3760ccdfd4bdde4afdd66f4078022ba3b61.tar.bz2
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_binhex.py')
-rwxr-xr-xLib/test/test_binhex.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/Lib/test/test_binhex.py b/Lib/test/test_binhex.py
index c774200..2580fb2 100755
--- a/Lib/test/test_binhex.py
+++ b/Lib/test/test_binhex.py
@@ -42,4 +42,9 @@ class BinHexTestCase(unittest.TestCase):
self.assertEqual(self.DATA, finish)
-test_support.run_unittest(BinHexTestCase)
+def test_main():
+ test_support.run_unittest(BinHexTestCase)
+
+
+if __name__ == "__main__":
+ test_main()