2015-09-03 06:37:42 +08:00
|
|
|
// Test AmazonCloudDrive filesystem interface
|
2018-03-15 06:44:46 +08:00
|
|
|
|
|
|
|
// +build acd
|
|
|
|
|
2015-09-03 06:37:42 +08:00
|
|
|
package amazonclouddrive_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2019-07-29 01:47:38 +08:00
|
|
|
"github.com/rclone/rclone/backend/amazonclouddrive"
|
|
|
|
"github.com/rclone/rclone/fs"
|
|
|
|
"github.com/rclone/rclone/fstest/fstests"
|
2015-09-03 06:37:42 +08:00
|
|
|
)
|
|
|
|
|
2018-04-08 01:48:11 +08:00
|
|
|
// TestIntegration runs integration tests against the remote
|
|
|
|
func TestIntegration(t *testing.T) {
|
2015-11-07 19:14:46 +08:00
|
|
|
fstests.NilObject = fs.Object((*amazonclouddrive.Object)(nil))
|
2015-09-03 06:37:42 +08:00
|
|
|
fstests.RemoteName = "TestAmazonCloudDrive:"
|
2018-04-08 01:48:11 +08:00
|
|
|
fstests.Run(t)
|
2015-09-03 06:37:42 +08:00
|
|
|
}
|