mirror of
https://github.com/rclone/rclone.git
synced 2024-11-26 02:09:55 +08:00
7c4fe3eb75
This will enable multipart downloads in future commits
24 lines
619 B
Go
24 lines
619 B
Go
// Test Cache filesystem interface
|
|
|
|
// +build !plan9
|
|
|
|
package cache_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/ncw/rclone/backend/cache"
|
|
_ "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: "TestCache:",
|
|
NilObject: (*cache.Object)(nil),
|
|
UnimplementableFsMethods: []string{"PublicLink", "MergeDirs", "OpenWriterAt"},
|
|
UnimplementableObjectMethods: []string{"MimeType", "ID", "GetTier", "SetTier"},
|
|
})
|
|
}
|