about summary refs log tree commit diff
path: root/test_zachwalk.py
diff options
context:
space:
mode:
authorZach DeCook <zachdecook@librem.one>2021-02-07 22:29:02 -0500
committerZach DeCook <zachdecook@librem.one>2021-02-07 22:29:02 -0500
commit77651ccd131fe7e22c53c284d5fac1d8ea1261a6 (patch)
treed12f17f0bc0458b2ea41f4dd8c459d7436ef2a02 /test_zachwalk.py
parentaea9eb5be60f2274ab4af702e3e8b1572244a18e (diff)
downloadzachwalk-77651ccd131fe7e22c53c284d5fac1d8ea1261a6.tar.gz
test: add basic test
Diffstat (limited to 'test_zachwalk.py')
-rwxr-xr-xtest_zachwalk.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/test_zachwalk.py b/test_zachwalk.py
new file mode 100755
index 0000000..5ed323e
--- /dev/null
+++ b/test_zachwalk.py
@@ -0,0 +1,8 @@
+#!/usr/bin/env python3
+import zachwalk
+
+def main():
+    assert zachwalk.gnd([b'']) == zachwalk.DEFAULT
+
+if __name__ == '__main__':
+    main()