1
mirror of https://github.com/rclone/rclone synced 2024-11-01 21:49:35 +01:00
rclone/cmd/mountlib/mounttest/write_non_unix.go
2017-05-15 16:56:46 +01:00

14 lines
236 B
Go

// +build !linux,!darwin,!freebsd
package mounttest
import (
"runtime"
"testing"
)
// TestWriteFileDoubleClose tests double close on write
func TestWriteFileDoubleClose(t *testing.T) {
t.Skip("not supported on " + runtime.GOOS)
}