github.com/artpar/rclone@v1.67.3/backend/hdfs/hdfs_test.go (about)

     1  // Test HDFS filesystem interface
     2  
     3  //go:build !plan9
     4  
     5  package hdfs_test
     6  
     7  import (
     8  	"testing"
     9  
    10  	"github.com/artpar/rclone/backend/hdfs"
    11  	"github.com/artpar/rclone/fstest/fstests"
    12  )
    13  
    14  // TestIntegration runs integration tests against the remote
    15  func TestIntegration(t *testing.T) {
    16  	fstests.Run(t, &fstests.Opt{
    17  		RemoteName: "TestHdfs:",
    18  		NilObject:  (*hdfs.Object)(nil),
    19  	})
    20  }