summaryrefslogtreecommitdiff
path: root/tests/test_parse.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_parse.py')
-rw-r--r--tests/test_parse.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/tests/test_parse.py b/tests/test_parse.py
index 1a83ac5..570ab96 100644
--- a/tests/test_parse.py
+++ b/tests/test_parse.py
@@ -15,16 +15,14 @@ class TestNewParse(object):
vs = ViewState(raw=b'\xff\x01\x02\x88\x01')
assert vs.decode() == 136
-@pytest.mark.skip()
-class TestParse(object):
-
-
-
def test_string_value(self):
s = 'abcdefghij'
vs = ViewState(raw=b'\xff\x01\x05' + bytes([len(s)]) + s.encode())
assert vs.decode() == s
+
+@pytest.mark.skip()
+class TestParse(object):
def test_simple_dict(self):
vs = ViewState(raw=b'\xff\x01\x18\x02\x05\x01a\x05\x01b\x05\x01c\x05\x01d')
assert vs.decode() == {'a': 'b', 'c': 'd'}