(t *testing.T, f fs.Fs, remote string)
| 1067 | } |
| 1068 | |
| 1069 | func (r *run) mkdir(t *testing.T, f fs.Fs, remote string) { |
| 1070 | err := f.Mkdir(context.Background(), remote) |
| 1071 | require.NoError(t, err) |
| 1072 | } |
| 1073 | |
| 1074 | func (r *run) rm(t *testing.T, f fs.Fs, remote string) error { |
| 1075 | var err error |
no test coverage detected