1
0
mirror of https://github.com/rclone/rclone.git synced 2025-12-23 03:33:28 +00:00
Files
rclone/backend/drime/drime_test.go
dougal 4d858210b3 Add Drime backend
Co-Authored-By: Nick Craig-Wood <nick@craig-wood.com>
2025-12-11 17:11:09 +00:00

18 lines
362 B
Go

// 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),
})
}