mirror of
https://github.com/python/cpython.git
synced 2025-08-30 21:48:47 +00:00
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.
This commit is contained in:
parent
6f7993765a
commit
2e2be3760c
34 changed files with 229 additions and 39 deletions
|
@ -106,4 +106,10 @@ class GlobTests(unittest.TestCase):
|
|||
eq(self.glob('?a?', '*F'), map(self.norm, [os.path.join('aaa', 'zzzF'),
|
||||
os.path.join('aab', 'F')]))
|
||||
|
||||
run_unittest(GlobTests)
|
||||
|
||||
def test_main():
|
||||
run_unittest(GlobTests)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
test_main()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue