TargetOrg targets the given org with 'cf target'.
(org string)
| 143 | |
| 144 | // TargetOrg targets the given org with 'cf target'. |
| 145 | func TargetOrg(org string) { |
| 146 | Eventually(CF("target", "-o", org)).Should(Exit(0)) |
| 147 | } |
| 148 | |
| 149 | // ClearTarget logs out and logs back into the CLI using LogoutCF and LoginCF. |
| 150 | func ClearTarget() { |
no test coverage detected