The memory backend

This is a bucket based remote
This commit is contained in:
Nick Craig-Wood
2018-05-03 16:31:06 +01:00
parent 277d94feac
commit c789436580
11 changed files with 717 additions and 0 deletions

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