#17303: test_future* now work with unittest test discovery. Patch by Zachary Ware.

This commit is contained in:
Ezio Melotti 2013-02-27 10:00:03 +02:00
parent c472c5d7bd
commit 1ed6be3793
5 changed files with 18 additions and 25 deletions

View file

@ -17,5 +17,5 @@ class TestMultipleFeatures(unittest.TestCase):
self.assertEqual(s.getvalue(), "foo\n")
def test_main():
support.run_unittest(TestMultipleFeatures)
if __name__ == '__main__':
unittest.main()