(self)
| 303 | self._assert_followed_all_urls(links, absolute) |
| 304 | |
| 305 | def test_follow_all_empty(self): |
| 306 | r = self.response_class("http://example.com") |
| 307 | assert not list(r.follow_all([])) |
| 308 | |
| 309 | def test_follow_all_invalid(self): |
| 310 | r = self.response_class("http://example.com") |
nothing calls this directly
no test coverage detected