mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +01:00
ce065614e2
The VFS is now reliable enough so that the mount tests don't fail.
This reverts commit 4808958f93
.
14 lines
178 B
Go
14 lines
178 B
Go
// +build linux darwin,amd64
|
|
|
|
package mount2
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/rclone/rclone/vfs/vfstest"
|
|
)
|
|
|
|
func TestMount(t *testing.T) {
|
|
vfstest.RunTests(t, false, mount)
|
|
}
|