diff options
Diffstat (limited to 'test/test_console_help.py')
-rw-r--r-- | test/test_console_help.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/test_console_help.py b/test/test_console_help.py index dc2591e5..32d94247 100644 --- a/test/test_console_help.py +++ b/test/test_console_help.py @@ -7,11 +7,13 @@ import libmproxy.console.help as help class DummyLoop: + def __init__(self): self.widget = None class DummyMaster: + def __init__(self): self.loop = DummyLoop() @@ -20,6 +22,7 @@ class DummyMaster: class TestHelp: + def test_helptext(self): h = help.HelpView(None) assert h.helptext() |