2023-10-29 14:15:34 +00:00
|
|
|
//go:build linux
|
2017-05-13 08:03:40 +00:00
|
|
|
|
2017-05-02 21:35:07 +00:00
|
|
|
package mount
|
|
|
|
|
|
|
|
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"
|
2017-05-02 21:35:07 +00:00
|
|
|
)
|
|
|
|
|
2018-04-08 10:18:15 +00:00
|
|
|
func TestMount(t *testing.T) {
|
2023-10-04 17:33:12 +00:00
|
|
|
vfstest.RunTests(t, false, vfscommon.CacheModeOff, true, mount)
|
2018-04-08 10:18:15 +00:00
|
|
|
}
|