mirror of
https://github.com/rclone/rclone.git
synced 2024-11-23 00:43:49 +01:00
a7e6806f26
Signed-off-by: Anagh Kumar Baranwal <6824881+darthShadow@users.noreply.github.com>
15 lines
182 B
Go
15 lines
182 B
Go
//go:build linux
|
|
// +build linux
|
|
|
|
package mount2
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/rclone/rclone/vfs/vfstest"
|
|
)
|
|
|
|
func TestMount(t *testing.T) {
|
|
vfstest.RunTests(t, false, mount)
|
|
}
|