Files
rclone-subdir-layout/backend/ram/ram_test.go
2025-05-07 11:55:22 +01:00

18 lines
323 B
Go

// Test ram filesystem interface
package ram
import (
"testing"
"github.com/rclone/rclone/fstest/fstests"
)
// TestIntegration runs integration tests against the remote
func TestIntegration(t *testing.T) {
fstests.Run(t, &fstests.Opt{
RemoteName: ":ram:",
NilObject: (*Object)(nil),
QuickTestOK: true,
})
}