mirror of
https://github.com/rclone/rclone.git
synced 2024-12-23 15:38:57 +01:00
operations: fix tests TestMoveFileBackupDir and TestCopyFileBackupDir
..so they don't run on backends which can't move or copy.
This commit is contained in:
parent
7153909390
commit
734f504d5f
@ -791,6 +791,9 @@ func TestCaseInsensitiveMoveFile(t *testing.T) {
|
||||
func TestMoveFileBackupDir(t *testing.T) {
|
||||
r := fstest.NewRun(t)
|
||||
defer r.Finalise()
|
||||
if !CanServerSideMove(r.Fremote) {
|
||||
t.Skip("Skipping test as remote does not support server side move or copy")
|
||||
}
|
||||
|
||||
oldBackupDir := fs.Config.BackupDir
|
||||
fs.Config.BackupDir = r.FremoteName + "/backup"
|
||||
@ -840,6 +843,9 @@ func TestCopyFile(t *testing.T) {
|
||||
func TestCopyFileBackupDir(t *testing.T) {
|
||||
r := fstest.NewRun(t)
|
||||
defer r.Finalise()
|
||||
if !CanServerSideMove(r.Fremote) {
|
||||
t.Skip("Skipping test as remote does not support server side move or copy")
|
||||
}
|
||||
|
||||
oldBackupDir := fs.Config.BackupDir
|
||||
fs.Config.BackupDir = r.FremoteName + "/backup"
|
||||
|
Loading…
Reference in New Issue
Block a user