mirror of
https://github.com/rclone/rclone.git
synced 2024-11-23 08:54:10 +01:00
57d5de6fba
git grep -l github.com/ncw/rclone | xargs -d'\n' perl -i~ -lpe 's|github.com/ncw/rclone|github.com/rclone/rclone|g' goimports -w `find . -name \*.go`
14 lines
185 B
Go
14 lines
185 B
Go
// +build linux darwin freebsd
|
|
|
|
package mount
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/rclone/rclone/cmd/mountlib/mounttest"
|
|
)
|
|
|
|
func TestMount(t *testing.T) {
|
|
mounttest.RunTests(t, mount)
|
|
}
|