(t *testing.T)
| 252 | } |
| 253 | |
| 254 | func TestReportCommand_MarkdownGroups(t *testing.T) { |
| 255 | tmpDir := createReportTestFiles(t) |
| 256 | resetReportFlags() |
| 257 | |
| 258 | output := captureReportOutput(t, tmpDir) |
| 259 | |
| 260 | // Default group-by is status |
| 261 | if !strings.Contains(output, "### pending (4)") { |
| 262 | t.Error("Expected '### pending (4)' group header") |
| 263 | } |
| 264 | if !strings.Contains(output, "### completed (1)") { |
| 265 | t.Error("Expected '### completed (1)' group header") |
| 266 | } |
| 267 | } |
| 268 | |
| 269 | func TestReportCommand_MarkdownCriticalPath(t *testing.T) { |
| 270 | tmpDir := createReportTestFiles(t) |
nothing calls this directly
no test coverage detected