(self)
| 329 | self.assertStat(content_type='image', num_urls=0) |
| 330 | |
| 331 | def test_non_http(self): |
| 332 | body = '<a href="ftp://example.com">'.encode('utf-8') |
| 333 | self.add_page(body=body) |
| 334 | self.crawl() |
| 335 | self.assertStat(num_urls=0) |
| 336 | |
| 337 | |
| 338 | if __name__ == '__main__': |
nothing calls this directly
no test coverage detected