(t *testing.T)
| 202 | } |
| 203 | |
| 204 | func TestRegistry_ReadFile_NotFound(t *testing.T) { |
| 205 | withRegistryPlugin(t) |
| 206 | |
| 207 | _, err := registry.ReadFile("missing.txt") |
| 208 | assert.True(t, errors.Is(err, fs.ErrNotExist)) |
| 209 | } |
| 210 | |
| 211 | func TestRegistry_Open_Found(t *testing.T) { |
| 212 | withRegistryPlugin(t) |
nothing calls this directly
no test coverage detected