(appName string, tmpZipFilepath string)
| 80 | } |
| 81 | |
| 82 | func downloadFirstAppBits(appName string, tmpZipFilepath string) { |
| 83 | appGUID := AppGUID(appName) |
| 84 | session := CF("curl", fmt.Sprintf("/v2/apps/%s/download", appGUID), "--output", tmpZipFilepath) |
| 85 | Eventually(session).Should(Exit(0)) |
| 86 | } |
no test coverage detected