diff options
Diffstat (limited to 'test/test_app.py')
-rw-r--r-- | test/test_app.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/test_app.py b/test/test_app.py index 6fc64dbe..f35def00 100644 --- a/test/test_app.py +++ b/test/test_app.py @@ -30,6 +30,9 @@ class TestApp(tutils.DaemonTests): assert self.getpath("/log/%s"%id).status_code == 200 assert self.getpath("/log/9999999").status_code == 404 + def test_log_binary(self): + assert self.get("200:h@10b=@10b:da") + def test_response_preview(self): r = self.getpath("/response_preview", params=dict(spec="200")) assert r.status_code == 200 |