github.com/10XDev/rclone@v1.52.3-0.20200626220027-16af9ab76b2a/backend/amazonclouddrive/amazonclouddrive_test.go (about)

     1  // Test AmazonCloudDrive filesystem interface
     2  
     3  // +build acd
     4  
     5  package amazonclouddrive_test
     6  
     7  import (
     8  	"testing"
     9  
    10  	"github.com/rclone/rclone/backend/amazonclouddrive"
    11  	"github.com/rclone/rclone/fs"
    12  	"github.com/rclone/rclone/fstest/fstests"
    13  )
    14  
    15  // TestIntegration runs integration tests against the remote
    16  func TestIntegration(t *testing.T) {
    17  	fstests.NilObject = fs.Object((*amazonclouddrive.Object)(nil))
    18  	fstests.RemoteName = "TestAmazonCloudDrive:"
    19  	fstests.Run(t)
    20  }