mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 09:04:52 +01:00
22 lines
343 B
Go
22 lines
343 B
Go
// Package vfstest provides tests for VFS.
|
|
package vfstest
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/rclone/rclone/vfs"
|
|
)
|
|
|
|
// vfsOs is an implementation of Oser backed by the "vfs" package
|
|
type vfsOs struct {
|
|
*vfs.VFS
|
|
}
|
|
|
|
// Stat
|
|
func (v vfsOs) Stat(path string) (os.FileInfo, error) {
|
|
return v.VFS.Stat(path)
|
|
}
|
|
|
|
// Check interfaces
|
|
var _ Oser = vfsOs{}
|