()
| 1281 | } |
| 1282 | |
| 1283 | func (e missingEnvError) Error() string { |
| 1284 | return fmt.Sprintf("environment variable(s) %s must be set and non-empty", strings.Join(e.missingEnvs, ", ")) |
| 1285 | } |
| 1286 | |
| 1287 | type testScriptEnv struct { |
| 1288 | host string |
no test coverage detected