(t *testing.T)
| 71 | } |
| 72 | |
| 73 | func TestRunStatusWithMissingPRD(t *testing.T) { |
| 74 | tmpDir := t.TempDir() |
| 75 | |
| 76 | opts := StatusOptions{ |
| 77 | Name: "nonexistent", |
| 78 | BaseDir: tmpDir, |
| 79 | } |
| 80 | |
| 81 | err := RunStatus(opts) |
| 82 | if err == nil { |
| 83 | t.Error("Expected error for missing PRD") |
| 84 | } |
| 85 | } |
| 86 | |
| 87 | func TestRunListWithNoPRDs(t *testing.T) { |
| 88 | tmpDir := t.TempDir() |
nothing calls this directly
no test coverage detected