diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2012-10-05 11:14:17 +1300 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2012-10-05 11:14:17 +1300 |
commit | 495daf2b641d14bbe8d7cab1482e12e8c8d7ea1b (patch) | |
tree | a4e23755047195e763baa6623fea3b04a8cbb0aa /test/test_pathoc.py | |
parent | 2bdb5d15b935f345e769bacafe60f0f594929f31 (diff) | |
download | mitmproxy-495daf2b641d14bbe8d7cab1482e12e8c8d7ea1b.tar.gz mitmproxy-495daf2b641d14bbe8d7cab1482e12e8c8d7ea1b.tar.bz2 mitmproxy-495daf2b641d14bbe8d7cab1482e12e8c8d7ea1b.zip |
Remove actions log and explain, preparing for a more sophisticated take on this.
Diffstat (limited to 'test/test_pathoc.py')
-rw-r--r-- | test/test_pathoc.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/test/test_pathoc.py b/test/test_pathoc.py index 1c64f076..bec339cb 100644 --- a/test/test_pathoc.py +++ b/test/test_pathoc.py @@ -75,12 +75,8 @@ class TestDaemon: def test_conn_err(self): assert "Invalid server response" in self.tval(["get:'/p/200:d2'"]) - def test_explain(self): - reqs = [ "get:/api/info:ir,'x'"] - assert "inject" in self.tval(reqs, explain=True) - def test_fileread(self): d = tutils.test_data.path("data/request") - assert "foo" in self.tval(["+%s"%d], explain=True) + assert "foo" in self.tval(["+%s"%d], showreq=True) assert "File" in self.tval(["+/nonexistent"]) |