Add removeAll to fakeFs

This commit is contained in:
jregan
2018-11-22 06:50:43 -08:00
parent 621ed52bab
commit eed16afb00
4 changed files with 52 additions and 6 deletions

View File

@@ -27,6 +27,7 @@ type FileSystem interface {
Create(name string) (File, error)
Mkdir(name string) error
MkdirAll(name string) error
RemoveAll(name string) error
Open(name string) (File, error)
IsDir(name string) bool
Exists(name string) bool