1
0
mirror of https://github.com/rclone/rclone.git synced 2026-01-06 02:23:24 +00:00

new backend: zoho workdrive - fixes #4533

This commit is contained in:
buengese
2020-10-08 00:17:50 +02:00
committed by Nick Craig-Wood
parent 62c9074132
commit 66c3f2f31f
12 changed files with 1610 additions and 0 deletions

17
backend/zoho/zoho_test.go Normal file
View File

@@ -0,0 +1,17 @@
// Test Zoho filesystem interface
package zoho_test
import (
"testing"
"github.com/rclone/rclone/backend/zoho"
"github.com/rclone/rclone/fstest/fstests"
)
// TestIntegration runs integration tests against the remote
func TestIntegration(t *testing.T) {
fstests.Run(t, &fstests.Opt{
RemoteName: "TestZoho:",
NilObject: (*zoho.Object)(nil),
})
}