(t *testing.T, r fs.Fs, path string, content string)
| 15 | ) |
| 16 | |
| 17 | func checkFile(t *testing.T, r fs.Fs, path string, content string) { |
| 18 | timeAtrFromFlags, err := timeOfTouch() |
| 19 | require.NoError(t, err) |
| 20 | file1 := fstest.NewItem(path, content, timeAtrFromFlags) |
| 21 | fstest.CheckItems(t, r, file1) |
| 22 | } |
| 23 | |
| 24 | // TestMain drives the tests |
| 25 | func TestMain(m *testing.M) { |
no test coverage detected
searching dependent graphs…