type FakeOS …
func (f *FakeOS) MkdirAll(path string, perm os.FileMode) error { … }
func (f *FakeOS) Symlink(oldname string, newname string) error { … }
func (f *FakeOS) Stat(path string) (os.FileInfo, error) { … }
func (f *FakeOS) Remove(path string) error { … }
func (f *FakeOS) RemoveAll(path string) error { … }
func (f *FakeOS) Create(path string) (*os.File, error) { … }
func (*FakeOS) Chmod(path string, perm os.FileMode) error { … }
func (f *FakeOS) Hostname() (name string, err error) { … }
func (*FakeOS) Chtimes(path string, atime time.Time, mtime time.Time) error { … }
func (*FakeOS) Pipe() (r *os.File, w *os.File, err error) { … }
func (f *FakeOS) ReadDir(dirname string) ([]os.DirEntry, error) { … }
func (f *FakeOS) Glob(pattern string) ([]string, error) { … }
func (*FakeOS) Open(name string) (*os.File, error) { … }
func (*FakeOS) OpenFile(name string, flag int, perm os.FileMode) (*os.File, error) { … }
func (*FakeOS) Rename(oldpath, newpath string) error { … }