diff options
-rw-r--r-- | test/mitmproxy/test_command.py | 6 | ||||
-rw-r--r-- | test/mitmproxy/test_lexer.py | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/test/mitmproxy/test_command.py b/test/mitmproxy/test_command.py index 2785e28f..ad475fba 100644 --- a/test/mitmproxy/test_command.py +++ b/test/mitmproxy/test_command.py @@ -139,7 +139,7 @@ class TestCommand: ], [ "", - [command.ParseResult(value = "", type = mitmproxy.types.Cmd, valid = False)], + [], [] ], [ @@ -283,6 +283,10 @@ def test_simple(): c.call("nonexistent") with pytest.raises(exceptions.CommandError, match="Unknown"): c.execute("\\") + with pytest.raises(exceptions.CommandError, match="Unknown"): + c.execute(r"\'") + with pytest.raises(exceptions.CommandError, match="Unknown"): + c.execute(r"\"") c.add("empty", a.empty) c.execute("empty") diff --git a/test/mitmproxy/test_lexer.py b/test/mitmproxy/test_lexer.py index a1898620..19ef155b 100644 --- a/test/mitmproxy/test_lexer.py +++ b/test/mitmproxy/test_lexer.py @@ -73,5 +73,3 @@ class TestScripts: tokens = list(lex) result = ['Increase', 'test', 'coverage'] assert(tokens == result) - - |