(prefix, partial_path)
| 264 | [("/", "relative-page-1"), ("/my-dash-app/", "relative-page-1")], |
| 265 | ) |
| 266 | def test_invalid_get_relative_path(prefix, partial_path): |
| 267 | with pytest.raises(_exc.UnsupportedRelativePath): |
| 268 | app_get_relative_path(prefix, partial_path) |
| 269 | |
| 270 | |
| 271 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected
searching dependent graphs…