2020-02-26 16:28:55 +00:00
|
|
|
// +build !linux !go1.13
|
|
|
|
// +build !darwin !go1.13
|
|
|
|
// +build !freebsd !go1.13
|
2020-01-08 08:02:01 +00:00
|
|
|
// +build !windows
|
|
|
|
|
|
|
|
package cache_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/rclone/rclone/fs"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (r *run) mountFs(t *testing.T, f fs.Fs) {
|
|
|
|
panic("mountFs not defined for this platform")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *run) unmountFs(t *testing.T, f fs.Fs) {
|
|
|
|
panic("unmountFs not defined for this platform")
|
|
|
|
}
|