| 22 | func (f *fakeFileInfo) Sys() any { return nil } |
| 23 | |
| 24 | type fakeHTTPFile struct { |
| 25 | *bytes.Reader |
| 26 | name string |
| 27 | modTime time.Time |
| 28 | } |
| 29 | |
| 30 | func newFakeHTTPFile(name, content string, modTime time.Time) *fakeHTTPFile { |
| 31 | return &fakeHTTPFile{ |
nothing calls this directly
no outgoing calls
no test coverage detected