(t *testing.T)
| 293 | } |
| 294 | |
| 295 | func TestParseMarkdownPRD_FileNotFound(t *testing.T) { |
| 296 | _, err := ParseMarkdownPRD("/nonexistent/prd.md") |
| 297 | if err == nil { |
| 298 | t.Error("expected error for nonexistent file") |
| 299 | } |
| 300 | } |
| 301 | |
| 302 | func TestParseMarkdownPRDFromString_H4StoryHeadings(t *testing.T) { |
| 303 | md := `# PRD: Phased Project |
nothing calls this directly
no test coverage detected