diff options
| author | Paul Buetow <paul@buetow.org> | 2026-02-12 22:23:45 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-02-12 22:23:45 +0200 |
| commit | 5b40d9312980b1aa6af907b3a3eb4ff51b189c75 (patch) | |
| tree | 2a5e84314e6b59bbcd3a889de841ae5534a83d1a /internal/promptstore/store_test.go | |
| parent | da160fbdfb30a55a4d617553baeb5b0a5a9d5fb8 (diff) | |
feat: add design_prompt meta-prompt for implementation planning
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Diffstat (limited to 'internal/promptstore/store_test.go')
| -rw-r--r-- | internal/promptstore/store_test.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/internal/promptstore/store_test.go b/internal/promptstore/store_test.go index 2c95ad7..1ec784a 100644 --- a/internal/promptstore/store_test.go +++ b/internal/promptstore/store_test.go @@ -84,9 +84,9 @@ func TestJSONLStore_List(t *testing.T) { t.Fatalf("List() error = %v", err) } - // Should have all prompts (7 user + 3 built-ins) - if len(prompts) != 10 { - t.Errorf("List() got %d prompts, want 10 (7 user + 3 built-ins)", len(prompts)) + // Should have all prompts (7 user + 4 built-ins) + if len(prompts) != 11 { + t.Errorf("List() got %d prompts, want 11 (7 user + 4 built-ins)", len(prompts)) } // No cursor for full list |
