(self)
| 753 | self.assertEqual({}, route.resource._match('/path')) |
| 754 | |
| 755 | def test_plain_route_url(self): |
| 756 | route = PlainRoute('GET', lambda req: None, None, '/path') |
| 757 | self.router.register_route(route) |
| 758 | self.assertEqual('/path?arg=1', route.url(query={'arg': 1})) |
| 759 | |
| 760 | def test_dynamic_route_url(self): |
| 761 | route = DynamicRoute('GET', lambda req: None, None, |
nothing calls this directly
no test coverage detected