(t *testing.T)
| 111 | } |
| 112 | |
| 113 | func TestSkillHandlerPin_DisabledModelInvocation(t *testing.T) { |
| 114 | sh, _ := newPinTestFixture(t, map[string]string{ |
| 115 | "pin-manual-only": pinFixtureManualOnly, |
| 116 | }) |
| 117 | sh.Pin("pin-manual-only") |
| 118 | |
| 119 | if sh.IsPinned("pin-manual-only") { |
| 120 | t.Fatal("skills with disable-model-invocation must not be pinnable") |
| 121 | } |
| 122 | } |
| 123 | |
| 124 | func TestSkillHandlerPin_NotFound(t *testing.T) { |
| 125 | sh, _ := newPinTestFixture(t, map[string]string{ |
nothing calls this directly
no test coverage detected