(t *testing.T)
| 1951 | } |
| 1952 | |
| 1953 | func TestWait_DoesNotReturnErrorForValidExecution(t *testing.T) { |
| 1954 | t.Parallel() |
| 1955 | p := script.Echo("a\nb\nc\n").ExecForEach("echo \"{{.}}\"") |
| 1956 | if err := p.Wait(); err != nil { |
| 1957 | t.Fatal(err) |
| 1958 | } |
| 1959 | } |
| 1960 | |
| 1961 | var base64Cases = []struct { |
| 1962 | name string |
nothing calls this directly
no test coverage detected
searching dependent graphs…