mirror of
https://github.com/rclone/rclone.git
synced 2024-12-04 14:44:00 +08:00
14 lines
184 B
Go
14 lines
184 B
Go
|
// +build linux darwin,amd64
|
||
|
|
||
|
package mount2
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/rclone/rclone/cmd/mountlib/mounttest"
|
||
|
)
|
||
|
|
||
|
func TestMount(t *testing.T) {
|
||
|
mounttest.RunTests(t, mount)
|
||
|
}
|