(t *testing.T)
| 738 | } |
| 739 | |
| 740 | func TestSummaryWithVarsAndRequires(t *testing.T) { |
| 741 | t.Parallel() |
| 742 | |
| 743 | // Test basic case from prompt.md - vars and requires |
| 744 | NewExecutorTest(t, |
| 745 | WithName("vars-and-requires"), |
| 746 | WithExecutorOptions( |
| 747 | task.WithDir("testdata/summary-vars-requires"), |
| 748 | task.WithSummary(true), |
| 749 | ), |
| 750 | WithTask("mytask"), |
| 751 | ) |
| 752 | |
| 753 | // Test with shell variables |
| 754 | NewExecutorTest(t, |
| 755 | WithName("shell-vars"), |
| 756 | WithExecutorOptions( |
| 757 | task.WithDir("testdata/summary-vars-requires"), |
| 758 | task.WithSummary(true), |
| 759 | ), |
| 760 | WithTask("with-sh-var"), |
| 761 | ) |
| 762 | } |
| 763 | |
| 764 | func TestLabel(t *testing.T) { |
| 765 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…