github.com/ncw/rclone@v1.48.1-0.20190724201158-a35aa1360e3e/fstest/mockdir/dir.go (about) 1 // Package mockdir makes a mock fs.Directory object 2 package mockdir 3 4 import ( 5 "time" 6 7 "github.com/ncw/rclone/fs" 8 ) 9 10 // New makes a mock directory object with the name given 11 func New(name string) fs.Directory { 12 return fs.NewDir(name, time.Time{}) 13 }