filescom: add Files.com backend

This commit is contained in:
Sam Harrison
2024-07-23 10:41:40 -05:00
committed by Nick Craig-Wood
parent 089c168fb9
commit ae9960a4ed
14 changed files with 1201 additions and 28 deletions

View File

@@ -0,0 +1,17 @@
// Test Files filesystem interface
package filescom_test
import (
"testing"
"github.com/rclone/rclone/backend/filescom"
"github.com/rclone/rclone/fstest/fstests"
)
// TestIntegration runs integration tests against the remote
func TestIntegration(t *testing.T) {
fstests.Run(t, &fstests.Opt{
RemoteName: "TestFilesCom:",
NilObject: (*filescom.Object)(nil),
})
}