rclone/backend/storj/storj_test.go

21 lines
398 B
Go
Raw Permalink Normal View History

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