CreateApp creates an empty app in CloudController with no package or droplet
(app string)
| 18 | |
| 19 | // CreateApp creates an empty app in CloudController with no package or droplet |
| 20 | func CreateApp(app string) { |
| 21 | Eventually(CF("create-app", app)).Should(Exit(0)) |
| 22 | } |
| 23 | |
| 24 | // QuickDeleteApp deletes the app with the given name, if provided, using |
| 25 | // 'cf curl /v3/app... -X DELETE'. |
no test coverage detected