rclone/cmd/mount2/mount_test.go
2021-09-19 11:28:40 +01:00

15 lines
216 B
Go

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