(self)
| 239 | self._assert_followed_url("foo", "http://example.com/foo") |
| 240 | |
| 241 | def test_follow_link(self): |
| 242 | self._assert_followed_url( |
| 243 | Link("http://example.com/foo"), "http://example.com/foo" |
| 244 | ) |
| 245 | |
| 246 | def test_follow_None_url(self): |
| 247 | r = self.response_class("http://example.com") |
nothing calls this directly
no test coverage detected