Make various asyncio test files individually runnable

This commit is contained in:
Antoine Pitrou 2013-10-20 21:02:53 +02:00
parent bcd76827f4
commit cb1fe98f76
8 changed files with 32 additions and 0 deletions

View file

@ -138,3 +138,7 @@ class PopenTests(unittest.TestCase):
# allow for partial reads...
self.assertTrue(msg.upper().rstrip().startswith(out))
self.assertTrue(b"stderr".startswith(err))
if __name__ == '__main__':
unittest.main()