summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorbd <bdunahu@operationnull.com>2025-06-08 19:27:32 -0400
committerbd <bdunahu@operationnull.com>2025-06-08 19:27:32 -0400
commitb2e45ec5af0b312aa82b950d284ad44f72702f6f (patch)
tree0a7e6158010f9f7260eddb8b05a9e932ab3398b4 /tests
initial commit
Diffstat (limited to 'tests')
-rw-r--r--tests/successive_sleep.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/successive_sleep.py b/tests/successive_sleep.py
new file mode 100644
index 0000000..fc9df70
--- /dev/null
+++ b/tests/successive_sleep.py
@@ -0,0 +1,15 @@
+import time
+
+
+def slow():
+ time.sleep(0.4)
+
+
+def main():
+ for i in range(3):
+ time.sleep(0.2)
+ slow()
+
+
+if __name__ == "__main__":
+ main()