(t *testing.T)
| 48 | } |
| 49 | |
| 50 | func TestLoadPRD_FileNotFound(t *testing.T) { |
| 51 | _, err := LoadPRD("/nonexistent/path/prd.md") |
| 52 | if err == nil { |
| 53 | t.Error("expected error for nonexistent file, got nil") |
| 54 | } |
| 55 | } |
| 56 | |
| 57 | func TestPRD_AllComplete_EmptyPRD(t *testing.T) { |
| 58 | p := &PRD{ |