aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@corte.si>2017-12-12 08:03:09 +1300
committerGitHub <noreply@github.com>2017-12-12 08:03:09 +1300
commit4912920573c71a49670928b19893b965d199f836 (patch)
tree170034aac0b28e93dfa7e6735b873593d5a5a30a /test
parent7654ad2d31d294d227e9ed305309c927a2ec0b94 (diff)
parentb09c28d8a6fcd2af4a43b968b800d44c5a8c836e (diff)
downloadmitmproxy-4912920573c71a49670928b19893b965d199f836.tar.gz
mitmproxy-4912920573c71a49670928b19893b965d199f836.tar.bz2
mitmproxy-4912920573c71a49670928b19893b965d199f836.zip
Merge branch 'master' into browser-win
Diffstat (limited to 'test')
-rw-r--r--test/mitmproxy/test_command.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/mitmproxy/test_command.py b/test/mitmproxy/test_command.py
index 87432163..43b97742 100644
--- a/test/mitmproxy/test_command.py
+++ b/test/mitmproxy/test_command.py
@@ -163,3 +163,10 @@ def test_decorator():
with taddons.context() as tctx:
tctx.master.addons.add(a)
assert tctx.master.commands.call("cmd1 bar") == "ret bar"
+
+
+def test_verify_arg_signature():
+ with pytest.raises(exceptions.CommandError):
+ command.verify_arg_signature(lambda: None, [1, 2], {})
+ print('hello there')
+ command.verify_arg_signature(lambda a, b: None, [1, 2], {}) \ No newline at end of file