()
| 8 | ) |
| 9 | |
| 10 | func ExampleWithHelloWorldApp() { |
| 11 | var appName string |
| 12 | |
| 13 | When("the app exists", func() { |
| 14 | BeforeEach(func() { |
| 15 | appName = helpers.PrefixedRandomName("app") |
| 16 | |
| 17 | helpers.WithHelloWorldApp(func(appDir string) { |
| 18 | Eventually(helpers.CustomCF(helpers.CFEnv{WorkingDirectory: appDir}, "push", appName)).Should(Exit(0)) |
| 19 | }) |
| 20 | }) |
| 21 | }) |
| 22 | } |
nothing calls this directly
no test coverage detected