Feed date scraper for Gemini (protocol)
test: add basic test
Zach DeCook 2021-02-07
parent aea9eb5 · commit 77651cc
-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()