rclone/cmd/mount/mount_test.go

16 lines
253 B
Go

//go:build linux
// +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)
}