github.com/artpar/rclone@v1.67.3/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/artpar/rclone/backend/storj"
    10  	"github.com/artpar/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  }