2018-05-03 15:31:06 +00:00
|
|
|
// 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{
|
2022-06-29 10:51:46 +00:00
|
|
|
RemoteName: ":memory:",
|
|
|
|
NilObject: (*Object)(nil),
|
|
|
|
QuickTestOK: true,
|
2018-05-03 15:31:06 +00:00
|
|
|
})
|
|
|
|
}
|