mirror of
https://github.com/rclone/rclone.git
synced 2024-11-23 00:43:49 +01:00
15 lines
200 B
Go
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)
|
|
}
|