diff options
author | Aldo Cortesi <aldo@corte.si> | 2017-05-02 13:09:27 +1200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-02 13:09:27 +1200 |
commit | 9d2350b6709532bf185c6e0f56342b7b780092c7 (patch) | |
tree | 2442d2393690b70c9c66c924fe308c5ca8e4c37d /test/mitmproxy/tools/console/test_help.py | |
parent | 8d29492960a89078ad2743e648afa08a3c71ebc1 (diff) | |
parent | dcae79e017c5fb267a4091d9584990e75777cc38 (diff) | |
download | mitmproxy-9d2350b6709532bf185c6e0f56342b7b780092c7.tar.gz mitmproxy-9d2350b6709532bf185c6e0f56342b7b780092c7.tar.bz2 mitmproxy-9d2350b6709532bf185c6e0f56342b7b780092c7.zip |
Merge pull request #2305 from cortesi/consolebugs
console: various bugfixes
Diffstat (limited to 'test/mitmproxy/tools/console/test_help.py')
-rw-r--r-- | test/mitmproxy/tools/console/test_help.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/test/mitmproxy/tools/console/test_help.py b/test/mitmproxy/tools/console/test_help.py index ac3011e6..0ebc2d6a 100644 --- a/test/mitmproxy/tools/console/test_help.py +++ b/test/mitmproxy/tools/console/test_help.py @@ -9,9 +9,3 @@ class TestHelp: def test_helptext(self): h = help.HelpView(None) assert h.helptext() - - def test_keypress(self): - 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" |