(make_request)
| 113 | |
| 114 | |
| 115 | def test_method_invalid(make_request) -> None: |
| 116 | with pytest.raises(ValueError, match="Method cannot contain non-token characters"): |
| 117 | make_request("METHOD WITH\nWHITESPACES", "http://python.org/") |
| 118 | |
| 119 | |
| 120 | def test_version_1_0(make_request) -> None: |
nothing calls this directly
no test coverage detected