summaryrefslogtreecommitdiffstats
path: root/tests/routes.py
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2018-04-20 16:12:20 -0700
committerBryan Newbold <bnewbold@robocracy.org>2018-04-20 16:17:48 -0700
commitcc85fa69262b6e937e9d675808ca779d15c6fd85 (patch)
tree1ed07b144819f39da895ae088fd78c75b77237d2 /tests/routes.py
parent5fa778fcf771b2512844e43e19e5785260ee0452 (diff)
downloadfatcat-cc85fa69262b6e937e9d675808ca779d15c6fd85.tar.gz
fatcat-cc85fa69262b6e937e9d675808ca779d15c6fd85.zip
refactor tests around more
Diffstat (limited to 'tests/routes.py')
-rw-r--r--tests/routes.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/routes.py b/tests/routes.py
new file mode 100644
index 00000000..47b99e30
--- /dev/null
+++ b/tests/routes.py
@@ -0,0 +1,20 @@
+
+import json
+import pytest
+import fatcat
+import fatcat.sql
+import tempfile
+from fatcat.models import *
+from fixtures import *
+
+
+def test_static_routes(rich_app):
+ app = rich_app
+
+ for route in ('/health', '/robots.txt', '/', '/about'):
+ rv = app.get(route)
+ assert rv.status_code == 200
+
+ assert app.get("/static/bogus/route").status_code == 404
+
+