(self)
| 2399 | assert cid != object() |
| 2400 | |
| 2401 | def test_setdefault(self): |
| 2402 | cid = CaseInsensitiveDict({"Spam": "blueval"}) |
| 2403 | assert cid.setdefault("spam", "notblueval") == "blueval" |
| 2404 | assert cid.setdefault("notspam", "notblueval") == "notblueval" |
| 2405 | |
| 2406 | def test_lower_items(self): |
| 2407 | cid = CaseInsensitiveDict( |
nothing calls this directly
no test coverage detected