2023-10-20 11:35:56 +00:00
|
|
|
// Test Linkbox filesystem interface
|
|
|
|
package linkbox_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/rclone/rclone/backend/linkbox"
|
|
|
|
"github.com/rclone/rclone/fstest/fstests"
|
|
|
|
)
|
|
|
|
|
|
|
|
// TestIntegration runs integration tests against the remote
|
|
|
|
func TestIntegration(t *testing.T) {
|
|
|
|
fstests.Run(t, &fstests.Opt{
|
|
|
|
RemoteName: "TestLinkbox:",
|
|
|
|
NilObject: (*linkbox.Object)(nil),
|
2024-01-06 16:47:55 +00:00
|
|
|
// Linkbox doesn't support leading dots for files
|
|
|
|
SkipLeadingDot: true,
|
2023-10-20 11:35:56 +00:00
|
|
|
})
|
|
|
|
}
|