mirror of
https://github.com/rclone/rclone.git
synced 2024-11-30 12:25:29 +01:00
21 lines
372 B
Go
21 lines
372 B
Go
// +build !linux !go1.11
|
|
// +build !darwin !go1.11
|
|
// +build !freebsd !go1.11
|
|
// +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")
|
|
}
|