(empty_environ, req, expected)
| 103 | ], |
| 104 | ) |
| 105 | def test_pathname_prefix_assets(empty_environ, req, expected): |
| 106 | config = AttributeDict(assets_external_path=req, assets_url_path="assets") |
| 107 | path = app_get_asset_url(config, "reset.css") |
| 108 | assert path == expected |
| 109 | |
| 110 | |
| 111 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected
searching dependent graphs…