Feed date scraper for Gemini (protocol)
test: add basic test
| -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() |