yandex_test.go 367 B

123456789101112131415161718
  1. // Test Yandex filesystem interface
  2. package yandex_test
  3. import (
  4. "testing"
  5. "github.com/rclone/rclone/backend/yandex"
  6. "github.com/rclone/rclone/fstest/fstests"
  7. )
  8. // TestIntegration runs integration tests against the remote
  9. func TestIntegration(t *testing.T) {
  10. fstests.Run(t, &fstests.Opt{
  11. RemoteName: "TestYandex:",
  12. NilObject: (*yandex.Object)(nil),
  13. })
  14. }