github.com/xhghs/rclone@v1.51.1-0.20200430155106-e186a28cced8/backend/union/union_test.go (about) 1 // Test Union filesystem interface 2 package union_test 3 4 import ( 5 "testing" 6 7 _ "github.com/rclone/rclone/backend/local" 8 "github.com/rclone/rclone/fstest/fstests" 9 ) 10 11 // TestIntegration runs integration tests against the remote 12 func TestIntegration(t *testing.T) { 13 fstests.Run(t, &fstests.Opt{ 14 RemoteName: "TestUnion:", 15 NilObject: nil, 16 SkipFsMatch: true, 17 }) 18 }