From 996acf122dbf8d9aa694a16a32ced065f5805cd2 Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Mon, 17 Feb 2003 14:51:41 +0000 Subject: 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. --- Lib/test/test_netrc.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Lib/test/test_netrc.py') diff --git a/Lib/test/test_netrc.py b/Lib/test/test_netrc.py index 15e7e68134..8f4c825b26 100644 --- a/Lib/test/test_netrc.py +++ b/Lib/test/test_netrc.py @@ -38,6 +38,8 @@ class NetrcTestCase(unittest.TestCase): self.assert_(self.netrc.hosts['foo'] == ('log1', 'acct1', 'pass1')) self.assert_(self.netrc.hosts['default'] == ('log2', None, 'pass2')) +def test_main(): + test_support.run_unittest(NetrcTestCase) if __name__ == "__main__": - test_support.run_unittest(NetrcTestCase) + test_main() -- cgit v1.2.1