(t *testing.T)
| 232 | } |
| 233 | |
| 234 | func TestRegistry_Stat_NotFound(t *testing.T) { |
| 235 | withRegistryPlugin(t) |
| 236 | |
| 237 | _, err := registry.Stat("missing.txt") |
| 238 | assert.True(t, errors.Is(err, fs.ErrNotExist)) |
| 239 | } |
| 240 | |
| 241 | // --------------------------------------------------------------------------- |
| 242 | // pluginRegistry.AllFileSubSystems |
nothing calls this directly
no test coverage detected