Path1 is local, Path2 is remote
(t *testing.T)
| 260 | |
| 261 | // Path1 is local, Path2 is remote |
| 262 | func TestBisyncLocalRemote(t *testing.T) { |
| 263 | if *fstest.RemoteName == *argRemote2 { |
| 264 | t.Skip("path1 and path2 are the same remote") |
| 265 | } |
| 266 | _, remote, cleanup, err := fstest.RandomRemote() |
| 267 | fs.Logf(nil, "remote: %v", remote) |
| 268 | require.NoError(t, err) |
| 269 | defer cleanup() |
| 270 | ctx, _ := fs.AddConfig(context.TODO()) |
| 271 | testBisync(ctx, t, *argRemote2, remote) |
| 272 | } |
| 273 | |
| 274 | // Path1 and Path2 are both different directories on remote |
| 275 | // (useful for testing server-side copy/move) |
nothing calls this directly
no test coverage detected
searching dependent graphs…