CreateOrg creates an org with the given name using 'cf create-org'.
(org string)
| 66 | |
| 67 | // CreateOrg creates an org with the given name using 'cf create-org'. |
| 68 | func CreateOrg(org string) { |
| 69 | Eventually(CF("create-org", org)).Should(Exit(0)) |
| 70 | } |
| 71 | |
| 72 | // CreateSpace creates a space with the given name using 'cf create-space'. |
| 73 | func CreateSpace(space string) { |
no test coverage detected