mirror of
https://github.com/rclone/rclone
synced 2024-11-13 12:09:47 +01:00
1b2cc781e5
* Fix error handling in List and NewObject * Fix Precision in case we have precision > time.Second * Fix Features - all binary features are possible * Fix integration tests using new test facilities
19 lines
364 B
Go
19 lines
364 B
Go
// Test Union filesystem interface
|
|
package union_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
_ "github.com/ncw/rclone/backend/local"
|
|
"github.com/ncw/rclone/fstest/fstests"
|
|
)
|
|
|
|
// TestIntegration runs integration tests against the remote
|
|
func TestIntegration(t *testing.T) {
|
|
fstests.Run(t, &fstests.Opt{
|
|
RemoteName: "TestUnion:",
|
|
NilObject: nil,
|
|
SkipFsMatch: true,
|
|
})
|
|
}
|