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