(self)
| 397 | ] |
| 398 | |
| 399 | def test_set_cookie(self): |
| 400 | response = self.fetch("/set") |
| 401 | self.assertEqual( |
| 402 | sorted(response.headers.get_list("Set-Cookie")), |
| 403 | ["bytes=zxcv; Path=/", "str=asdf; Path=/", "unicode=qwer; Path=/"], |
| 404 | ) |
| 405 | |
| 406 | def test_get_cookie(self): |
| 407 | response = self.fetch("/get", headers={"Cookie": "foo=bar"}) |