From f6cea09d5a6a5b63eafaccec9f6100584865999b Mon Sep 17 00:00:00 2001 From: Thomas Kriechbaumer Date: Wed, 8 Feb 2017 17:37:08 +0100 Subject: stateobject: coverage++ --- test/mitmproxy/test_stateobject.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/test/mitmproxy/test_stateobject.py b/test/mitmproxy/test_stateobject.py index edec92c2..7b8e30d0 100644 --- a/test/mitmproxy/test_stateobject.py +++ b/test/mitmproxy/test_stateobject.py @@ -1,4 +1,5 @@ from typing import List +import pytest from mitmproxy.stateobject import StateObject @@ -67,3 +68,14 @@ def test_container_list(): assert len(copy.children) == 2 assert copy.children is not a.children assert copy.children[0] is not a.children[0] + + +def test_too_much_state(): + a = Container() + a.child = Child(42) + s = a.get_state() + s['foo'] = 'bar' + b = Container() + + with pytest.raises(RuntimeWarning): + b.set_state(s) -- cgit v1.2.3