(t *testing.T)
| 217 | } |
| 218 | |
| 219 | func TestRegistry_Open_NotFound(t *testing.T) { |
| 220 | withRegistryPlugin(t) |
| 221 | |
| 222 | _, err := registry.Open("missing.txt") |
| 223 | assert.True(t, errors.Is(err, fs.ErrNotExist)) |
| 224 | } |
| 225 | |
| 226 | func TestRegistry_Stat_Found(t *testing.T) { |
| 227 | withRegistryPlugin(t) |
nothing calls this directly
no test coverage detected