mirror of
https://github.com/rclone/rclone.git
synced 2024-11-09 01:55:19 +01:00
06e3fa3aba
The written out list of tests was replaced with a nested test for mount and cmount. The tests for each VFS cache mode were also replaced with nested tests which makes the output and the code much cleaner.
14 lines
182 B
Go
14 lines
182 B
Go
// +build linux darwin freebsd
|
|
|
|
package mount
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/ncw/rclone/cmd/mountlib/mounttest"
|
|
)
|
|
|
|
func TestMount(t *testing.T) {
|
|
mounttest.RunTests(t, mount)
|
|
}
|