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