Path1 and Path2 are both different directories on remote (useful for testing server-side copy/move)
(t *testing.T)
| 274 | // Path1 and Path2 are both different directories on remote |
| 275 | // (useful for testing server-side copy/move) |
| 276 | func TestBisyncRemoteRemote(t *testing.T) { |
| 277 | _, remote, cleanup, err := fstest.RandomRemote() |
| 278 | fs.Logf(nil, "remote: %v", remote) |
| 279 | require.NoError(t, err) |
| 280 | defer cleanup() |
| 281 | ctx, _ := fs.AddConfig(context.TODO()) |
| 282 | testBisync(ctx, t, remote, remote) |
| 283 | } |
| 284 | |
| 285 | // make sure rc can cope with running concurrent jobs |
| 286 | func TestBisyncConcurrent(t *testing.T) { |
no test coverage detected
searching dependent graphs…