| 122 | var _ RepoStorage = &mockRepoStorage{} |
| 123 | |
| 124 | type mockRepoStorage struct { |
| 125 | localFs LocalStorage |
| 126 | } |
| 127 | |
| 128 | func NewMockRepoStorage() *mockRepoStorage { |
| 129 | return &mockRepoStorage{localFs: billyLocalStorage{Filesystem: memfs.New()}} |
nothing calls this directly
no outgoing calls
no test coverage detected