(t *testing.T)
| 161 | } |
| 162 | |
| 163 | func TestKnowledgePlugin_Capabilities(t *testing.T) { |
| 164 | p := NewBuiltinKnowledgePlugin() |
| 165 | if !p.IsReadOnly(nil) || !p.IsConcurrencySafe(nil) { |
| 166 | t.Fatal("@knowledge is read-only and concurrency-safe by construction") |
| 167 | } |
| 168 | } |
| 169 | |
| 170 | // TestKnowledgePlugin_DescribeCall pins the spinner-label contract: short, |
| 171 | // human one-liners — never the static description or the raw JSON envelope, |
nothing calls this directly
no test coverage detected