summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_capi/test_time.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_capi/test_time.py')
-rw-r--r--Lib/test/test_capi/test_time.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/test/test_capi/test_time.py b/Lib/test/test_capi/test_time.py
index 17ebd7c..989c158 100644
--- a/Lib/test/test_capi/test_time.py
+++ b/Lib/test/test_capi/test_time.py
@@ -72,3 +72,7 @@ class CAPITest(unittest.TestCase):
# Test PyTime_Time() and PyTime_TimeRaw()
self.check_clock(_testcapi.PyTime_Time, time.time)
self.check_clock(_testcapi.PyTime_TimeRaw, time.time)
+
+
+if __name__ == "__main__":
+ unittest.main()