1
0
mirror of https://github.com/rclone/rclone.git synced 2025-01-29 21:04:23 +02:00
rclone/backend/storj/storj_test.go

20 lines
381 B
Go
Raw Normal View History

2021-09-09 15:25:25 +03:00
//go:build !plan9
2020-05-11 14:56:41 -04:00
// Test Storj filesystem interface
package storj_test
2020-05-11 14:56:41 -04:00
import (
"testing"
"github.com/rclone/rclone/backend/storj"
2020-05-11 14:56:41 -04: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-11 14:56:41 -04:00
})
}