(t *testing.T)
| 817 | } |
| 818 | |
| 819 | func TestPrefix(t *testing.T) { |
| 820 | t.Parallel() |
| 821 | |
| 822 | NewExecutorTest(t, |
| 823 | WithName("up to date"), |
| 824 | WithExecutorOptions( |
| 825 | task.WithDir("testdata/prefix_uptodate"), |
| 826 | task.WithOutputStyle(ast.Output{Name: "prefixed"}), |
| 827 | ), |
| 828 | WithTask("foo"), |
| 829 | ) |
| 830 | |
| 831 | NewExecutorTest(t, |
| 832 | WithName("up to dat with no output style"), |
| 833 | WithExecutorOptions( |
| 834 | task.WithDir("testdata/prefix_uptodate"), |
| 835 | ), |
| 836 | WithTask("foo"), |
| 837 | ) |
| 838 | } |
| 839 | |
| 840 | func TestPromptInSummary(t *testing.T) { |
| 841 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…