TargetOrgAndSpace targets the given org and space with 'cf target'.
(org string, space string)
| 138 | |
| 139 | // TargetOrgAndSpace targets the given org and space with 'cf target'. |
| 140 | func TargetOrgAndSpace(org string, space string) { |
| 141 | Eventually(CF("target", "-o", org, "-s", space)).Should(Exit(0)) |
| 142 | } |
| 143 | |
| 144 | // TargetOrg targets the given org with 'cf target'. |
| 145 | func TargetOrg(org string) { |