(self)
| 24 | |
| 25 | class TestLogFormatter: |
| 26 | def setup_method(self): |
| 27 | self.formatter = LogFormatter() |
| 28 | self.spider = Spider("default") |
| 29 | self.spider.crawler = get_crawler() |
| 30 | |
| 31 | def test_crawled_with_referer(self): |
| 32 | req = Request("http://www.example.com") |
nothing calls this directly
no test coverage detected