(self)
| 2344 | assert list(cid.keys()) == ["SPAM"] |
| 2345 | |
| 2346 | def test_delitem(self): |
| 2347 | cid = CaseInsensitiveDict() |
| 2348 | cid["Spam"] = "someval" |
| 2349 | del cid["sPam"] |
| 2350 | assert "spam" not in cid |
| 2351 | assert len(cid) == 0 |
| 2352 | |
| 2353 | def test_contains(self): |
| 2354 | cid = CaseInsensitiveDict() |
nothing calls this directly
no test coverage detected