mirror of
https://github.com/rclone/rclone.git
synced 2024-11-26 18:31:17 +08:00
16 lines
244 B
Go
16 lines
244 B
Go
// +build linux darwin,amd64
|
|
|
|
package mount2
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/rclone/rclone/fstest/testy"
|
|
"github.com/rclone/rclone/vfs/vfstest"
|
|
)
|
|
|
|
func TestMount(t *testing.T) {
|
|
testy.SkipUnreliable(t)
|
|
vfstest.RunTests(t, false, mount)
|
|
}
|