(self)
| 194 | |
| 195 | class TestLogformatterSubclass(TestLogFormatter): |
| 196 | def setup_method(self): |
| 197 | self.formatter = LogFormatterSubclass() |
| 198 | self.spider = Spider("default") |
| 199 | self.spider.crawler = get_crawler(Spider) |
| 200 | |
| 201 | def test_crawled_with_referer(self): |
| 202 | req = Request("http://www.example.com") |
nothing calls this directly
no test coverage detected