(t *testing.T)
| 54 | } |
| 55 | |
| 56 | func TestSkillHandlerInfo_NotFoundEverywhere(t *testing.T) { |
| 57 | sh, _ := newInfoFixture(t) |
| 58 | // Both local install dir AND remote registries are empty/disabled — |
| 59 | // Info must reach the "not found" message and return without panic. |
| 60 | sh.Info(context.Background(), "does-not-exist", "") |
| 61 | } |
| 62 | |
| 63 | func TestSkillHandlerInfo_LocalOnlyPrintsStatus(t *testing.T) { |
| 64 | sh, installDir := newInfoFixture(t) |
nothing calls this directly
no test coverage detected