2023-04-11 12:14:37 +00:00
|
|
|
//go:build linux
|
|
|
|
// +build linux
|
2016-11-21 20:52:32 +00:00
|
|
|
|
|
|
|
package mount2
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2023-10-04 17:33:12 +00:00
|
|
|
"github.com/rclone/rclone/vfs/vfscommon"
|
2020-04-16 12:33:46 +00:00
|
|
|
"github.com/rclone/rclone/vfs/vfstest"
|
2016-11-21 20:52:32 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestMount(t *testing.T) {
|
2023-10-04 17:33:12 +00:00
|
|
|
vfstest.RunTests(t, false, vfscommon.CacheModeOff, true, mount)
|
2016-11-21 20:52:32 +00:00
|
|
|
}
|