()
| 595 | } |
| 596 | |
| 597 | func (e missingEnvError) Error() string { |
| 598 | return fmt.Sprintf("environment variable(s) %s must be set and non-empty", strings.Join(e.missingEnvs, ", ")) |
| 599 | } |
| 600 | |
| 601 | type testScriptEnv struct { |
| 602 | host string |
no test coverage detected