(t *testing.T)
| 98 | } |
| 99 | |
| 100 | func TestGetEditPrompt(t *testing.T) { |
| 101 | prompt := GetEditPrompt("/test/path/prds/main") |
| 102 | if prompt == "" { |
| 103 | t.Error("Expected GetEditPrompt() to return non-empty prompt") |
| 104 | } |
| 105 | if !strings.Contains(prompt, "/test/path/prds/main") { |
| 106 | t.Error("Expected prompt to contain the PRD directory path") |
| 107 | } |
| 108 | } |
nothing calls this directly
no test coverage detected