(appName, orgName, spaceName, userName string)
| 230 | } |
| 231 | |
| 232 | func HaveRollbackOutput(appName, orgName, spaceName, userName string) *CLIMatcher { |
| 233 | return &CLIMatcher{Lines: []Line{ |
| 234 | AppInOrgSpaceAsUser(appName, orgName, spaceName, userName), |
| 235 | KeyValue("name", appName), |
| 236 | KeyValue("routes", fmt.Sprintf("%s.%s", appName, helpers.DefaultSharedDomain())), |
| 237 | }} |
| 238 | } |
| 239 | |
| 240 | // Per-style guide: https://github.com/cloudfoundry/cli/wiki/CF-CLI-Style-Guide#system-feedback--transparency |
| 241 | func AppInOrgSpaceAsUser(appName, orgName, spaceName, userName string) Line { |
no test coverage detected