mirror of
https://github.com/rclone/rclone.git
synced 2025-08-18 01:20:16 +02:00
The memory backend
This is a bucket based remote
This commit is contained in:
16
backend/memory/memory_test.go
Normal file
16
backend/memory/memory_test.go
Normal file
@@ -0,0 +1,16 @@
|
||||
// Test memory filesystem interface
|
||||
package memory
|
||||
|
||||
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: ":memory:",
|
||||
NilObject: (*Object)(nil),
|
||||
})
|
||||
}
|
Reference in New Issue
Block a user