(t *testing.T, f fs.Fs, remote string, in io.ReadCloser)
| 996 | } |
| 997 | |
| 998 | func (r *run) writeRemoteReader(t *testing.T, f fs.Fs, remote string, in io.ReadCloser) { |
| 999 | r.writeObjectReader(t, f, remote, in) |
| 1000 | } |
| 1001 | |
| 1002 | func (r *run) writeObjectBytes(t *testing.T, f fs.Fs, remote string, data []byte) fs.Object { |
| 1003 | in := bytes.NewReader(data) |
no test coverage detected