From d1fc694952e473a2dfde807360deb65aa2e5c7d3 Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Wed, 18 May 2016 19:01:49 -0700 Subject: clean up odict --- test/netlib/test_odict.py | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'test/netlib/test_odict.py') diff --git a/test/netlib/test_odict.py b/test/netlib/test_odict.py index f0985ef6..b6fd6401 100644 --- a/test/netlib/test_odict.py +++ b/test/netlib/test_odict.py @@ -27,16 +27,6 @@ class TestODict(object): b.set_state(state) assert b == od - def test_in_any(self): - od = odict.ODict() - od["one"] = ["atwoa", "athreea"] - assert od.in_any("one", "two") - assert od.in_any("one", "three") - assert not od.in_any("one", "four") - assert not od.in_any("nonexistent", "foo") - assert not od.in_any("one", "TWO") - assert od.in_any("one", "TWO", True) - def test_iter(self): od = odict.ODict() assert not [i for i in od] -- cgit v1.2.3