(self)
| 446 | class TestRoutes: |
| 447 | @pytest.fixture |
| 448 | def app(self): |
| 449 | app = Flask(__name__) |
| 450 | app.add_url_rule( |
| 451 | "/get_post/<int:x>/<int:y>", |
| 452 | methods=["GET", "POST"], |
| 453 | endpoint="yyy_get_post", |
| 454 | ) |
| 455 | app.add_url_rule("/zzz_post", methods=["POST"], endpoint="aaa_post") |
| 456 | return app |
| 457 | |
| 458 | @pytest.fixture |
| 459 | def invoke(self, app, runner): |
no test coverage detected