mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +01:00
22 lines
485 B
Go
22 lines
485 B
Go
// Test AmazonCloudDrive filesystem interface
|
|
|
|
//go:build acd
|
|
// +build acd
|
|
|
|
package amazonclouddrive_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/rclone/rclone/backend/amazonclouddrive"
|
|
"github.com/rclone/rclone/fs"
|
|
"github.com/rclone/rclone/fstest/fstests"
|
|
)
|
|
|
|
// TestIntegration runs integration tests against the remote
|
|
func TestIntegration(t *testing.T) {
|
|
fstests.NilObject = fs.Object((*amazonclouddrive.Object)(nil))
|
|
fstests.RemoteName = "TestAmazonCloudDrive:"
|
|
fstests.Run(t)
|
|
}
|