1
mirror of https://github.com/rclone/rclone synced 2025-03-21 03:04:23 +01:00
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)
}