diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2014-10-25 15:37:57 +1300 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2014-10-25 15:37:57 +1300 |
commit | d4e6c25d45f680df4f807805ce878b498a5fb0c5 (patch) | |
tree | c91de92095727464e06513fc1801779d22c2cbf3 /test/test_app.py | |
parent | 00d0ee5ad56d8243b1e9bfffec9a941e11359d2c (diff) | |
download | mitmproxy-d4e6c25d45f680df4f807805ce878b498a5fb0c5.tar.gz mitmproxy-d4e6c25d45f680df4f807805ce878b498a5fb0c5.tar.bz2 mitmproxy-d4e6c25d45f680df4f807805ce878b498a5fb0c5.zip |
Update pyparsing
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 - |