(self, app, runner)
| 457 | |
| 458 | @pytest.fixture |
| 459 | def invoke(self, app, runner): |
| 460 | cli = FlaskGroup(create_app=lambda: app) |
| 461 | return partial(runner.invoke, cli) |
| 462 | |
| 463 | def expect_order(self, order, output): |
| 464 | # skip the header and match the start of each row |
no test coverage detected