(t *testing.T)
| 1366 | } |
| 1367 | |
| 1368 | func TestListFiles_ErrorsOnNonexistentPath(t *testing.T) { |
| 1369 | t.Parallel() |
| 1370 | p := script.ListFiles("nonexistentpath") |
| 1371 | if p.Error() == nil { |
| 1372 | t.Error("want error status on listing non-existent path, but got nil") |
| 1373 | } |
| 1374 | } |
| 1375 | |
| 1376 | func TestListFiles_OutputsSingleFileGivenFilePath(t *testing.T) { |
| 1377 | t.Parallel() |