github.com/rclone/rclone@v1.66.1-0.20240517100346-7b89735ae726/backend/linkbox/linkbox_test.go (about) 1 // Test Linkbox filesystem interface 2 package linkbox_test 3 4 import ( 5 "testing" 6 7 "github.com/rclone/rclone/backend/linkbox" 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: "TestLinkbox:", 15 NilObject: (*linkbox.Object)(nil), 16 // Linkbox doesn't support leading dots for files 17 SkipLeadingDot: true, 18 }) 19 }