(t *testing.T)
| 875 | } |
| 876 | |
| 877 | func TestPromptWithIndirectTask(t *testing.T) { |
| 878 | t.Parallel() |
| 879 | |
| 880 | NewExecutorTest(t, |
| 881 | WithExecutorOptions( |
| 882 | task.WithDir("testdata/prompt"), |
| 883 | task.WithAssumeTerm(true), |
| 884 | ), |
| 885 | WithTask("bar"), |
| 886 | WithInput("y\n"), |
| 887 | ) |
| 888 | } |
| 889 | |
| 890 | func TestPromptAssumeYes(t *testing.T) { |
| 891 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…