(path)
| 186 | |
| 187 | @pytest.mark.parametrize("path", ["../res/test.txt", "nothing.txt", "null\x00.txt"]) |
| 188 | def test_from_directory_not_found(path): |
| 189 | with pytest.raises(NotFound): |
| 190 | send_from_directory(res_path, path, environ) |
| 191 | |
| 192 | |
| 193 | def test_root_path(tmp_path): |
nothing calls this directly
no test coverage detected