2018-08-18 00:39:49 +00:00
|
|
|
// Test Union filesystem interface
|
|
|
|
package union_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2018-09-03 17:00:23 +00:00
|
|
|
_ "github.com/ncw/rclone/backend/local"
|
2018-08-18 00:39:49 +00:00
|
|
|
"github.com/ncw/rclone/fstest/fstests"
|
|
|
|
)
|
|
|
|
|
|
|
|
// TestIntegration runs integration tests against the remote
|
|
|
|
func TestIntegration(t *testing.T) {
|
|
|
|
fstests.Run(t, &fstests.Opt{
|
2018-09-03 17:00:23 +00:00
|
|
|
RemoteName: "TestUnion:",
|
|
|
|
NilObject: nil,
|
|
|
|
SkipFsMatch: true,
|
2018-08-18 00:39:49 +00:00
|
|
|
})
|
|
|
|
}
|