diff options
| author | Zach DeCook <zachdecook@librem.one> | 2021-02-07 22:29:02 -0500 |
|---|---|---|
| committer | Zach DeCook <zachdecook@librem.one> | 2021-02-07 22:29:02 -0500 |
| commit | 77651ccd131fe7e22c53c284d5fac1d8ea1261a6 (patch) | |
| tree | d12f17f0bc0458b2ea41f4dd8c459d7436ef2a02 /test_zachwalk.py | |
| parent | aea9eb5be60f2274ab4af702e3e8b1572244a18e (diff) | |
| download | zachwalk-77651ccd131fe7e22c53c284d5fac1d8ea1261a6.tar.gz | |
test: add basic test
Diffstat (limited to 'test_zachwalk.py')
| -rwxr-xr-x | test_zachwalk.py | 8 |
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() |
