(self)
| 88 | self.assertOptionIsDefault(crawler.settings, "RETRY_ENABLED") |
| 89 | |
| 90 | def test_crawler_rejects_spider_objects(self): |
| 91 | with pytest.raises(ValueError, match="spidercls argument must be a class"): |
| 92 | Crawler(DefaultSpider()) |
| 93 | |
| 94 | @inline_callbacks_test |
| 95 | def test_crawler_crawl_twice_seq_unsupported(self): |
nothing calls this directly
no test coverage detected