summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio/test_protocols.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_asyncio/test_protocols.py')
-rw-r--r--Lib/test/test_asyncio/test_protocols.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/test/test_asyncio/test_protocols.py b/Lib/test/test_asyncio/test_protocols.py
index 438111c..d8cde6d 100644
--- a/Lib/test/test_asyncio/test_protocols.py
+++ b/Lib/test/test_asyncio/test_protocols.py
@@ -55,3 +55,7 @@ class ProtocolsAbsTests(unittest.TestCase):
self.assertIsNone(sp.pipe_connection_lost(1, f))
self.assertIsNone(sp.process_exited())
self.assertFalse(hasattr(sp, '__dict__'))
+
+
+if __name__ == '__main__':
+ unittest.main()