(self)
| 162 | self.router.add_route('post', '/post/{id{}', handler) |
| 163 | |
| 164 | def test_add_url_invalid4(self): |
| 165 | handler = self.make_handler() |
| 166 | with self.assertRaises(ValueError): |
| 167 | self.router.add_route('post', '/post/{id"}', handler) |
| 168 | |
| 169 | def test_add_url_escaping(self): |
| 170 | handler = self.make_handler() |
nothing calls this directly
no test coverage detected