(self)
| 102 | ) |
| 103 | |
| 104 | def test_index(self): |
| 105 | response = self.fetch("/") |
| 106 | assert response.code == 200 |
| 107 | assert b'="/' not in response.body, ( |
| 108 | "HTML content should not contain root-relative paths" |
| 109 | ) |
| 110 | |
| 111 | def test_filter_help(self): |
| 112 | assert self.fetch("/filter-help").code == 200 |