(self, app)
| 1829 | def test_multi_route_class_views(app, client): |
| 1830 | class View: |
| 1831 | def __init__(self, app): |
| 1832 | app.add_url_rule("/", "index", self.index) |
| 1833 | app.add_url_rule("/<test>/", "index", self.index) |
| 1834 | |
| 1835 | def index(self, test="a"): |
| 1836 | return test |
nothing calls this directly
no test coverage detected