diff options
author | Maximilian Hils <git@maximilianhils.com> | 2017-07-29 20:38:27 +0200 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2017-07-29 21:51:26 +0200 |
commit | c29c5dbee850b019758d4281bf144fe2da8f8495 (patch) | |
tree | 2d4d06dccf1389e13792a4e1fde714adf27ecace /test | |
parent | 9ffd42edeacb19c3961840289bb25eaeca5991a5 (diff) | |
download | mitmproxy-c29c5dbee850b019758d4281bf144fe2da8f8495.tar.gz mitmproxy-c29c5dbee850b019758d4281bf144fe2da8f8495.tar.bz2 mitmproxy-c29c5dbee850b019758d4281bf144fe2da8f8495.zip |
add OptManager.items
Diffstat (limited to 'test')
-rw-r--r-- | test/mitmproxy/test_optmanager.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/mitmproxy/test_optmanager.py b/test/mitmproxy/test_optmanager.py index 7b4ffb8b..fe72e6bb 100644 --- a/test/mitmproxy/test_optmanager.py +++ b/test/mitmproxy/test_optmanager.py @@ -229,6 +229,10 @@ def test_simple(): assert "one" in TO() +def test_items(): + assert TO().items() + + def test_serialize(): o = TD2() o.three = "set" |