()
| 553 | } |
| 554 | |
| 555 | func (e missingEnvError) Error() string { |
| 556 | return fmt.Sprintf("environment variable(s) %s must be set and non-empty", strings.Join(e.missingEnvs, ", ")) |
| 557 | } |
| 558 | |
| 559 | type testScriptEnv struct { |
| 560 | host string |
no test coverage detected