(self)
| 267 | ) |
| 268 | |
| 269 | def test_follow_flags(self): |
| 270 | res = self.response_class("http://example.com/") |
| 271 | fol = res.follow("http://example.com/", flags=["cached", "allowed"]) |
| 272 | assert fol.flags == ["cached", "allowed"] |
| 273 | |
| 274 | # Response.follow_all |
| 275 |