(dir string)
| 230 | } |
| 231 | |
| 232 | func mustRemoveAll(dir string) { |
| 233 | err := os.RemoveAll(dir) |
| 234 | if err != nil { |
| 235 | panic(err) |
| 236 | } |
| 237 | } |
| 238 | |
| 239 | func TestFileServerImplicitLeadingSlash(t *testing.T) { |
| 240 | defer afterTest(t) |
no outgoing calls
no test coverage detected