Path1 is remote, Path2 is local
(t *testing.T)
| 247 | |
| 248 | // Path1 is remote, Path2 is local |
| 249 | func TestBisyncRemoteLocal(t *testing.T) { |
| 250 | if *fstest.RemoteName == *argRemote2 { |
| 251 | t.Skip("path1 and path2 are the same remote") |
| 252 | } |
| 253 | _, remote, cleanup, err := fstest.RandomRemote() |
| 254 | fs.Logf(nil, "remote: %v", remote) |
| 255 | require.NoError(t, err) |
| 256 | defer cleanup() |
| 257 | ctx, _ := fs.AddConfig(context.TODO()) |
| 258 | testBisync(ctx, t, remote, *argRemote2) |
| 259 | } |
| 260 | |
| 261 | // Path1 is local, Path2 is remote |
| 262 | func TestBisyncLocalRemote(t *testing.T) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…