(t *testing.T)
| 209 | } |
| 210 | |
| 211 | func TestRegistry_Open_Found(t *testing.T) { |
| 212 | withRegistryPlugin(t) |
| 213 | |
| 214 | f, err := registry.Open("items/test-sword.yaml") |
| 215 | require.NoError(t, err) |
| 216 | f.Close() |
| 217 | } |
| 218 | |
| 219 | func TestRegistry_Open_NotFound(t *testing.T) { |
| 220 | withRegistryPlugin(t) |
nothing calls this directly
no test coverage detected