aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_console_help.py
diff options
context:
space:
mode:
authorJim Shaver <dcypherd@gmail.com>2015-05-31 01:21:44 -0400
committerJim Shaver <dcypherd@gmail.com>2015-05-31 01:21:44 -0400
commitb51363b3ca43f6572acb673186e6ae78a1f48434 (patch)
treea7488b32871c142141a813dc6ff2ede172672c31 /test/test_console_help.py
parent4fe2c069cca07aadf983f54e18dac4de492d5d69 (diff)
parent06fba18106a8f759ec6f08453e86772a170c653b (diff)
downloadmitmproxy-b51363b3ca43f6572acb673186e6ae78a1f48434.tar.gz
mitmproxy-b51363b3ca43f6572acb673186e6ae78a1f48434.tar.bz2
mitmproxy-b51363b3ca43f6572acb673186e6ae78a1f48434.zip
Merge remote-tracking branch 'upstream/master' into print-bracket-fix
Conflicts: examples/har_extractor.py examples/nonblocking.py examples/read_dumpfile libmproxy/web/app.py
Diffstat (limited to 'test/test_console_help.py')
-rw-r--r--test/test_console_help.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/test_console_help.py b/test/test_console_help.py
index a410bd2e..a7a8b745 100644
--- a/test/test_console_help.py
+++ b/test/test_console_help.py
@@ -5,10 +5,12 @@ if os.name == "nt":
import libmproxy.console.help as help
+
class DummyLoop:
def __init__(self):
self.widget = None
+
class DummyMaster:
def __init__(self):
self.loop = DummyLoop()
@@ -19,12 +21,12 @@ class DummyMaster:
class TestHelp:
def test_helptext(self):
- h = help.HelpView(None, "foo", None)
+ h = help.HelpView(None)
assert h.helptext()
def test_keypress(self):
master = DummyMaster()
- h = help.HelpView(master, "foo", [1, 2, 3])
+ h = help.HelpView([1, 2, 3])
assert not h.keypress((0, 0), "q")
assert not h.keypress((0, 0), "?")
assert h.keypress((0, 0), "o") == "o"