github.com/10XDev/rclone@v1.52.3-0.20200626220027-16af9ab76b2a/backend/hubic/hubic_test.go (about) 1 // Test Hubic filesystem interface 2 package hubic_test 3 4 import ( 5 "testing" 6 7 "github.com/rclone/rclone/backend/hubic" 8 "github.com/rclone/rclone/fstest/fstests" 9 ) 10 11 // TestIntegration runs integration tests against the remote 12 func TestIntegration(t *testing.T) { 13 fstests.Run(t, &fstests.Opt{ 14 RemoteName: "TestHubic:", 15 NilObject: (*hubic.Object)(nil), 16 SkipFsCheckWrap: true, 17 SkipObjectCheckWrap: true, 18 }) 19 }