(self)
| 2323 | assert list(cid) == ["Accept"] |
| 2324 | |
| 2325 | def test_len(self): |
| 2326 | cid = CaseInsensitiveDict({"a": "a", "b": "b"}) |
| 2327 | cid["A"] = "a" |
| 2328 | assert len(cid) == 2 |
| 2329 | |
| 2330 | def test_getitem(self): |
| 2331 | cid = CaseInsensitiveDict({"Spam": "blueval"}) |
nothing calls this directly
no test coverage detected