diff options
Diffstat (limited to 'test/test_app.py')
-rw-r--r-- | test/test_app.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/test_app.py b/test/test_app.py index f35def00..7c7ac730 100644 --- a/test/test_app.py +++ b/test/test_app.py @@ -1,7 +1,9 @@ import tutils + class TestApp(tutils.DaemonTests): SSL = False + def test_index(self): r = self.getpath("/") assert r.status_code == 200 @@ -78,4 +80,3 @@ class TestApp(tutils.DaemonTests): r = self.getpath("/request_preview", params=dict(spec="")) assert r.status_code == 200 assert 'empty spec' in r.content - |