rclone/backend/tardigrade/tardigrade_test.go

21 lines
423 B
Go
Raw Normal View History

2021-09-09 20:25:25 +08:00
//go:build !plan9
2021-02-04 01:46:08 +08:00
// +build !plan9
2020-05-12 02:56:41 +08:00
// Test Tardigrade filesystem interface
package tardigrade_test
import (
"testing"
"github.com/rclone/rclone/backend/tardigrade"
"github.com/rclone/rclone/fstest/fstests"
)
// TestIntegration runs integration tests against the remote
func TestIntegration(t *testing.T) {
fstests.Run(t, &fstests.Opt{
RemoteName: "TestTardigrade:",
NilObject: (*tardigrade.Object)(nil),
})
}