sugarsync: new backend - fixes #622

This commit is contained in:
Nick Craig-Wood 2019-10-24 12:35:50 +01:00
parent 14e93bfd8a
commit bedeaf23af
14 changed files with 1864 additions and 1 deletions

View file

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