(path string)
| 1025 | } |
| 1026 | |
| 1027 | func (f *notExistsFS) ReadDir(path string) ([]os.FileInfo, error) { |
| 1028 | if f.matches(path) { |
| 1029 | return nil, os.ErrNotExist |
| 1030 | } |
| 1031 | |
| 1032 | return f.Filesystem.ReadDir(path) |
| 1033 | } |
| 1034 | |
| 1035 | func (s *SuiteDotGit) TestDeletedRefs(c *C) { |
| 1036 | fs := s.TemporalFilesystem(c) |
no test coverage detected