(app)
| 1425 | |
| 1426 | |
| 1427 | def test_static_url_empty_path(app): |
| 1428 | app = flask.Flask(__name__, static_folder="", static_url_path="") |
| 1429 | rv = app.test_client().open("/static/index.html", method="GET") |
| 1430 | assert rv.status_code == 200 |
| 1431 | rv.close() |
| 1432 | |
| 1433 | |
| 1434 | def test_static_url_empty_path_default(app): |
nothing calls this directly
no test coverage detected