rclone/cmd/mount/mount_test.go
2022-06-16 16:48:09 +01:00

15 lines
200 B
Go

//go:build linux || freebsd
// +build linux freebsd
package mount
import (
"testing"
"github.com/rclone/rclone/vfs/vfstest"
)
func TestMount(t *testing.T) {
vfstest.RunTests(t, false, mount)
}