UnsetAPI unsets the currently set API endpoint for the CLI.
()
| 29 | |
| 30 | // UnsetAPI unsets the currently set API endpoint for the CLI. |
| 31 | func UnsetAPI() { |
| 32 | Eventually(CF("api", "--unset")).Should(Exit(0)) |
| 33 | } |
| 34 | |
| 35 | func SkipSSLValidation() bool { |
| 36 | if skip, err := strconv.ParseBool(os.Getenv("SKIP_SSL_VALIDATION")); err == nil && !skip { |
no test coverage detected