()
| 465 | } |
| 466 | |
| 467 | func (e missingEnvError) Error() string { |
| 468 | return fmt.Sprintf("environment variable(s) %s must be set and non-empty", strings.Join(e.missingEnvs, ", ")) |
| 469 | } |
| 470 | |
| 471 | type testScriptEnv struct { |
| 472 | host string |
no test coverage detected