1
mirror of https://github.com/rclone/rclone synced 2024-09-23 22:15:03 +02:00
rclone/backend/sugarsync/sugarsync_test.go

18 lines
386 B
Go
Raw Normal View History

2019-10-24 13:35:50 +02:00
// 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),
})
}