(self)
| 160 | _test_decoded_attr(treq(), "scheme") |
| 161 | |
| 162 | def test_port(self): |
| 163 | _test_passthrough_attr(treq(), "port", 1234) |
| 164 | with pytest.raises(ValueError): |
| 165 | treq().port = "foo" |
| 166 | |
| 167 | def test_path(self): |
| 168 | _test_decoded_attr(treq(), "path") |
nothing calls this directly
no test coverage detected