(self, path)
| 524 | return [("/group/(.*)", EchoHandler), ("/slashes/([^/]*)/([^/]*)", EchoHandler)] |
| 525 | |
| 526 | def fetch_json(self, path): |
| 527 | return json_decode(self.fetch(path).body) |
| 528 | |
| 529 | def test_group_question_mark(self): |
| 530 | # Ensure that url-encoded question marks are handled properly |
no test coverage detected