Test to ensure it is possible to set param mappings on the routing object
(self)
| 75 | assert self.route.requires(("values",)).route["requires"] == ("values",) |
| 76 | |
| 77 | def test_map_params(self): |
| 78 | """Test to ensure it is possible to set param mappings on the routing object""" |
| 79 | assert self.route.map_params(id="user_id").route["map_params"] == {"id": "user_id"} |
| 80 | |
| 81 | def test_where(self): |
| 82 | """Test to ensure `where` can be used to replace all arguments on the fly""" |
nothing calls this directly
no test coverage detected