(t *testing.T)
| 2064 | } |
| 2065 | |
| 2066 | func TestWithStdErr_IsConcurrencySafeAfterExec(t *testing.T) { |
| 2067 | t.Parallel() |
| 2068 | err := script.Exec("echo").WithStderr(nil).Wait() |
| 2069 | if err != nil { |
| 2070 | t.Fatal(err) |
| 2071 | } |
| 2072 | } |
| 2073 | |
| 2074 | func TestHash_OutputsCorrectHash(t *testing.T) { |
| 2075 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…