github.com/xhghs/rclone@v1.51.1-0.20200430155106-e186a28cced8/backend/cache/cache_mount_other_test.go (about)

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