(modules_tmp_path)
| 6 | |
| 7 | |
| 8 | def test_explicit_instance_paths(modules_tmp_path): |
| 9 | with pytest.raises(ValueError, match=".*must be absolute"): |
| 10 | flask.Flask(__name__, instance_path="instance") |
| 11 | |
| 12 | app = flask.Flask(__name__, instance_path=os.fspath(modules_tmp_path)) |
| 13 | assert app.instance_path == os.fspath(modules_tmp_path) |
| 14 | |
| 15 | |
| 16 | def test_uninstalled_module_paths(modules_tmp_path, purge_module): |
nothing calls this directly
no outgoing calls
no test coverage detected