github.com/ncw/rclone@v1.48.1-0.20190724201158-a35aa1360e3e/backend/sftp/sftp_test.go (about) 1 // Test Sftp filesystem interface 2 3 // +build !plan9 4 5 package sftp_test 6 7 import ( 8 "testing" 9 10 "github.com/ncw/rclone/backend/sftp" 11 "github.com/ncw/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: "TestSftp:", 18 NilObject: (*sftp.Object)(nil), 19 }) 20 }