diff options
Diffstat (limited to 'test/test_console_help.py')
-rw-r--r-- | test/test_console_help.py | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/test/test_console_help.py b/test/test_console_help.py index e747635f..c9ef7228 100644 --- a/test/test_console_help.py +++ b/test/test_console_help.py @@ -1,5 +1,4 @@ import sys -import libpry import libmproxy.console.help as help from libmproxy import utils, flow, encoding @@ -8,7 +7,7 @@ class DummyMaster: pass -class uHelp(libpry.AutoTree): +class TestHelp: def test_helptext(self): h = help.HelpView(None, "foo", None) assert h.helptext() @@ -18,8 +17,3 @@ class uHelp(libpry.AutoTree): assert not h.keypress((0, 0), "q") assert not h.keypress((0, 0), "?") assert h.keypress((0, 0), "o") == "o" - - -tests = [ - uHelp() -] |