github.com/rclone/rclone@v1.66.1-0.20240517100346-7b89735ae726/backend/storj/storj_test.go (about) 1 //go:build !plan9 2 3 // Test Storj filesystem interface 4 package storj_test 5 6 import ( 7 "testing" 8 9 "github.com/rclone/rclone/backend/storj" 10 "github.com/rclone/rclone/fstest/fstests" 11 ) 12 13 // TestIntegration runs integration tests against the remote 14 func TestIntegration(t *testing.T) { 15 fstests.Run(t, &fstests.Opt{ 16 RemoteName: "TestStorj:", 17 NilObject: (*storj.Object)(nil), 18 }) 19 }