(app)
| 19 | |
| 20 | |
| 21 | def test_url_generation_requires_server_name(app): |
| 22 | with app.app_context(): |
| 23 | with pytest.raises(RuntimeError): |
| 24 | flask.url_for("index") |
| 25 | |
| 26 | |
| 27 | def test_url_generation_without_context_fails(): |
nothing calls this directly
no test coverage detected