github.com/artpar/rclone@v1.67.3/backend/netstorage/netstorage_test.go (about)

     1  package netstorage_test
     2  
     3  import (
     4  	"testing"
     5  
     6  	"github.com/artpar/rclone/backend/netstorage"
     7  	"github.com/artpar/rclone/fstest/fstests"
     8  )
     9  
    10  // TestIntegration runs integration tests against the remote
    11  func TestIntegration(t *testing.T) {
    12  	fstests.Run(t, &fstests.Opt{
    13  		RemoteName: "TestnStorage:",
    14  		NilObject:  (*netstorage.Object)(nil),
    15  	})
    16  }