rclone/backend/yandex/yandex_test.go
Nick Craig-Wood 57d5de6fba build: fix up package paths after repo move
git grep -l github.com/ncw/rclone | xargs -d'\n' perl -i~ -lpe 's|github.com/ncw/rclone|github.com/rclone/rclone|g'
goimports -w `find . -name \*.go`
2019-07-28 18:47:38 +01:00

18 lines
367 B
Go

// Test Yandex filesystem interface
package yandex_test
import (
"testing"
"github.com/rclone/rclone/backend/yandex"
"github.com/rclone/rclone/fstest/fstests"
)
// TestIntegration runs integration tests against the remote
func TestIntegration(t *testing.T) {
fstests.Run(t, &fstests.Opt{
RemoteName: "TestYandex:",
NilObject: (*yandex.Object)(nil),
})
}