mirror of
https://github.com/rclone/rclone.git
synced 2024-11-23 21:54:54 +08:00
fd39cbc193
The tests are now run for the mount commands and for the plain VFS. This makes the tests much easier to debug when running with a VFS than through a mount.
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)
|
|
}
|