-- MOCKS --
| 19 | // -- MOCKS -- |
| 20 | |
| 21 | type MockFileSystem struct { |
| 22 | Files map[string][]byte |
| 23 | } |
| 24 | |
| 25 | func (m *MockFileSystem) Stat(name string) (os.FileInfo, error) { |
| 26 | if _, ok := m.Files[name]; ok { |
nothing calls this directly
no outgoing calls
no test coverage detected