()
| 303 | |
| 304 | |
| 305 | def test_mutable_headers_merge_not_mapping() -> None: |
| 306 | h = MutableHeaders() |
| 307 | with pytest.raises(TypeError): |
| 308 | h |= {"not_mapping"} # type: ignore[arg-type] |
| 309 | with pytest.raises(TypeError): |
| 310 | h | {"not_mapping"} # type: ignore[operator] |
| 311 | |
| 312 | |
| 313 | def test_headers_mutablecopy() -> None: |
nothing calls this directly
no test coverage detected