2023-10-29 14:15:34 +00:00
|
|
|
//go:build linux
|
2017-05-13 09:03:40 +01:00
|
|
|
|
2017-05-02 22:35:07 +01:00
|
|
|
package mount
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2023-10-04 10:33:12 -07:00
|
|
|
"github.com/rclone/rclone/vfs/vfscommon"
|
2020-04-16 13:33:46 +01:00
|
|
|
"github.com/rclone/rclone/vfs/vfstest"
|
2017-05-02 22:35:07 +01:00
|
|
|
)
|
|
|
|
|
2018-04-08 11:18:15 +01:00
|
|
|
func TestMount(t *testing.T) {
|
2023-10-04 10:33:12 -07:00
|
|
|
vfstest.RunTests(t, false, vfscommon.CacheModeOff, true, mount)
|
2018-04-08 11:18:15 +01:00
|
|
|
}
|