diff options
Diffstat (limited to 'test/test_app.py')
-rw-r--r-- | test/test_app.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/test_app.py b/test/test_app.py index 699c9c41..da6431c9 100644 --- a/test/test_app.py +++ b/test/test_app.py @@ -59,3 +59,7 @@ class TestApp(tutils.DaemonTests): assert r.status_code == 200 assert 'Request' in r.content + r = self.getpath("/request_preview", params=dict(spec="")) + assert r.status_code == 200 + assert 'empty spec' in r.content + |