(self)
| 1759 | ) |
| 1760 | |
| 1761 | def test_gzip(self): |
| 1762 | response = self.fetch("/") |
| 1763 | self.assert_compressed(response) |
| 1764 | self.assertEqual(response.headers["Vary"], "Accept-Encoding") |
| 1765 | |
| 1766 | def test_gzip_static(self): |
| 1767 | # The streaming responses in StaticFileHandler have subtle |
nothing calls this directly
no test coverage detected