mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 09:04:52 +01:00
15 lines
237 B
Go
15 lines
237 B
Go
//go:build linux
|
|
|
|
package mount
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/rclone/rclone/vfs/vfscommon"
|
|
"github.com/rclone/rclone/vfs/vfstest"
|
|
)
|
|
|
|
func TestMount(t *testing.T) {
|
|
vfstest.RunTests(t, false, vfscommon.CacheModeOff, true, mount)
|
|
}
|