(self)
| 453 | self.assertMultiLineEqual(to_unicode(response.body), "") |
| 454 | |
| 455 | def test_set_cookie_overwrite(self): |
| 456 | response = self.fetch("/set_overwrite") |
| 457 | headers = response.headers.get_list("Set-Cookie") |
| 458 | self.assertEqual( |
| 459 | sorted(headers), ["a=e; Path=/", "c=d; Domain=example.com; Path=/"] |
| 460 | ) |
| 461 | |
| 462 | def test_set_cookie_max_age(self): |
| 463 | response = self.fetch("/set_max_age") |