rclone/backend/cache/cache_test.go

22 lines
416 B
Go
Raw Normal View History

2017-11-13 04:54:25 +11:00
// Test Cache filesystem interface
// +build !plan9
2017-11-13 04:54:25 +11:00
package cache_test
import (
"testing"
"github.com/ncw/rclone/backend/cache"
_ "github.com/ncw/rclone/backend/local"
2017-11-13 04:54:25 +11:00
"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),
})
2017-11-13 04:54:25 +11:00
}