(path string)
| 146 | } |
| 147 | |
| 148 | func (f *TempDirFixture) MkdirAll(path string) { |
| 149 | fullPath := f.JoinPath(path) |
| 150 | err := os.MkdirAll(fullPath, os.FileMode(0o777)) |
| 151 | if err != nil { |
| 152 | f.t.Fatal(err) |
| 153 | } |
| 154 | } |
| 155 | |
| 156 | func (f *TempDirFixture) TouchFiles(paths []string) { |
| 157 | for _, p := range paths { |