(self)
| 2317 | assert "bar" in cid |
| 2318 | |
| 2319 | def test_docstring_example(self): |
| 2320 | cid = CaseInsensitiveDict() |
| 2321 | cid["Accept"] = "application/json" |
| 2322 | assert cid["aCCEPT"] == "application/json" |
| 2323 | assert list(cid) == ["Accept"] |
| 2324 | |
| 2325 | def test_len(self): |
| 2326 | cid = CaseInsensitiveDict({"a": "a", "b": "b"}) |
nothing calls this directly
no test coverage detected