X-Git-Url: https://git.r.bdr.sh/rbdr/mobius/blobdiff_plain/aebc4d3647b9823ae8cbb57b21b1af83bfd011fb..47f9b49c161e576cf75f0a9be1d47cc7fa2cb62c:/hotline/file_store.go diff --git a/hotline/file_store.go b/hotline/file_store.go index f528c36..e9d083f 100644 --- a/hotline/file_store.go +++ b/hotline/file_store.go @@ -12,7 +12,7 @@ type FileStore interface { Stat(name string) (os.FileInfo, error) Open(name string) (*os.File, error) Symlink(oldname, newname string) error - + Remove(name string) error // TODO: implement these // Rename(oldpath string, newpath string) error // RemoveAll(path string) error @@ -36,6 +36,10 @@ func (fs *OSFileStore) Symlink(oldname, newname string) error { return os.Symlink(oldname, newname) } +func (fs *OSFileStore) Remove(name string) error { + return os.Remove(name) +} + type MockFileStore struct { mock.Mock } @@ -63,3 +67,8 @@ func (mfs *MockFileStore) Symlink(oldname, newname string) error { args := mfs.Called(oldname, newname) return args.Error(0) } + +func (mfs *MockFileStore) Remove(name string) error { + args := mfs.Called(name) + return args.Error(0) +}