summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorbd <bdunahu@operationnull.com>2025-06-09 01:47:13 -0400
committerbd <bdunahu@operationnull.com>2025-06-09 01:47:13 -0400
commit06e9b57dfc8492984290914b5428b27508cef982 (patch)
treec40a29b86255b9e9417387992caf46525daf8bf7 /tests
parentf5afb948e7477aaf274e464cbe8a841ece2919ce (diff)
Rewrite for further similarities to Scalene < v1.0
Diffstat (limited to 'tests')
-rw-r--r--tests/simult.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/simult.py b/tests/simult.py
index a840db5..6228596 100644
--- a/tests/simult.py
+++ b/tests/simult.py
@@ -1,10 +1,12 @@
import asyncio
+
async def count():
print("before")
await asyncio.sleep(1)
print("after")
+
async def main():
await asyncio.gather(count(), count(), count())
print("done")