()
| 49 | func (f *testBaseEntry) ObjectID() object.ID { return f.oid } |
| 50 | |
| 51 | func (f *testBaseEntry) Mode() os.FileMode { |
| 52 | if f.mode == 0 { |
| 53 | return 0o644 |
| 54 | } |
| 55 | |
| 56 | return f.mode & ^os.ModeDir |
| 57 | } |
| 58 | |
| 59 | type testFile struct { |
| 60 | testBaseEntry |
no outgoing calls
no test coverage detected