(self)
| 2380 | assert cid["bar"] == "anotherbar" |
| 2381 | |
| 2382 | def test_update_retains_unchanged(self): |
| 2383 | cid = CaseInsensitiveDict({"foo": "foo", "bar": "bar"}) |
| 2384 | cid.update({"foo": "newfoo"}) |
| 2385 | assert cid["bar"] == "bar" |
| 2386 | |
| 2387 | def test_iter(self): |
| 2388 | cid = CaseInsensitiveDict({"Spam": "spam", "Eggs": "eggs"}) |
nothing calls this directly
no test coverage detected