(command string, output ...string)
| 95 | } |
| 96 | |
| 97 | func confirmTestPluginOutput(command string, output ...string) { |
| 98 | session := helpers.CF(command) |
| 99 | for _, val := range output { |
| 100 | Eventually(session).Should(Say(val)) |
| 101 | } |
| 102 | Eventually(session).Should(Exit(0)) |
| 103 | } |
| 104 | |
| 105 | func confirmTestPluginOutputWithArg(command string, arg string, output ...string) { |
| 106 | session := helpers.CF(command, arg) |
no test coverage detected