CreateOrgAndSpace creates an org and a space in that org with specified names.
(org string, space string)
| 35 | |
| 36 | // CreateOrgAndSpace creates an org and a space in that org with specified names. |
| 37 | func CreateOrgAndSpace(org string, space string) { |
| 38 | CreateOrg(org) |
| 39 | TargetOrg(org) |
| 40 | CreateSpace(space) |
| 41 | } |
| 42 | |
| 43 | // CreateOrgAndSpaceUnlessExists creates an org and a space in that org with |
| 44 | // specified names only if these don't exist yet. |