(appName string, tmpZipFilepath string)
| 51 | } |
| 52 | |
| 53 | func downloadFirstAppPackage(appName string, tmpZipFilepath string) { |
| 54 | appGUID := GetFirstAppPackageGuid(appName) |
| 55 | session := CF("curl", fmt.Sprintf("/v3/packages/%s/download", appGUID), "--output", tmpZipFilepath) |
| 56 | Eventually(session).Should(Exit(0)) |
| 57 | } |
| 58 | |
| 59 | // VerifyAppPackageContentsV2 verifies the contents of a V2 app package by downloading the package zip and |
| 60 | // verifying the zipped files match the passed files. |
no test coverage detected