github.com/artpar/rclone@v1.67.3/backend/memory/memory_test.go (about) 1 // Test memory filesystem interface 2 package memory 3 4 import ( 5 "testing" 6 7 "github.com/artpar/rclone/fstest/fstests" 8 ) 9 10 // TestIntegration runs integration tests against the remote 11 func TestIntegration(t *testing.T) { 12 fstests.Run(t, &fstests.Opt{ 13 RemoteName: ":memory:", 14 NilObject: (*Object)(nil), 15 QuickTestOK: true, 16 }) 17 }