(self)
| 35 | assert self.wrapped.origin_req_host == "www.example.com" |
| 36 | |
| 37 | def test_has_header(self): |
| 38 | assert self.wrapped.has_header("content-type") |
| 39 | assert not self.wrapped.has_header("xxxxx") |
| 40 | |
| 41 | def test_get_header(self): |
| 42 | assert self.wrapped.get_header("content-type") == "text/html" |
nothing calls this directly
no test coverage detected