14 lines
182 B
Go
Executable File
14 lines
182 B
Go
Executable File
// +build linux darwin freebsd
|
|
|
|
package mount
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/ncw/rclone/cmd/mountlib/mounttest"
|
|
)
|
|
|
|
func TestMount(t *testing.T) {
|
|
mounttest.RunTests(t, mount)
|
|
}
|