github.com/10XDev/rclone@v1.52.3-0.20200626220027-16af9ab76b2a/backend/cache/cache_mount_other_test.go (about) 1 // +build !linux !go1.13 2 // +build !darwin !go1.13 3 // +build !freebsd !go1.13 4 // +build !windows 5 // +build !race 6 7 package cache_test 8 9 import ( 10 "testing" 11 12 "github.com/rclone/rclone/fs" 13 ) 14 15 func (r *run) mountFs(t *testing.T, f fs.Fs) { 16 panic("mountFs not defined for this platform") 17 } 18 19 func (r *run) unmountFs(t *testing.T, f fs.Fs) { 20 panic("unmountFs not defined for this platform") 21 }