Skip to content

Commit 9c9a490

Browse files
committed
add initial WIP tests to test.py
1 parent bb72536 commit 9c9a490

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

tests/test.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
"""WIP tests."""
2+
3+
import inspect
4+
5+
# ===========================================
6+
7+
8+
# ===========================================
9+
10+
for name, func in globals().copy().items():
11+
if name.startswith("test_"):
12+
print(f" ↓↓↓↓↓↓↓ {name} ↓↓↓↓↓↓")
13+
print(inspect.getsource(func))
14+
func()
15+
print(f"↑↑↑↑↑↑ {name} ↑↑↑↑↑↑")
16+
print()

0 commit comments

Comments
 (0)