1
0
mirror of https://github.com/rclone/rclone.git synced 2025-12-15 15:53:41 +00:00

Add Drime backend - FIXME WIP

Unit tests a long way from passing!
This commit is contained in:
Nick Craig-Wood
2025-12-03 16:43:04 +00:00
parent f7b255d4ec
commit fa4b299c3d
4 changed files with 1924 additions and 0 deletions

View File

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