aboutsummaryrefslogtreecommitdiff
path: root/tests/integration/test_smoke.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/integration/test_smoke.py')
-rw-r--r--tests/integration/test_smoke.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/integration/test_smoke.py b/tests/integration/test_smoke.py
new file mode 100644
index 0000000..1288da0
--- /dev/null
+++ b/tests/integration/test_smoke.py
@@ -0,0 +1,4 @@
+def test_home(testapp):
+ res = testapp.get("/")
+ assert res.status_code == 200
+ assert b'<h1>Home</h1>' in res.body