> @@ -464,12 +465,29 @@ public boolean apply(SearchOptions input) {
> assertTrue(waitForIndex.apply(options));
> }
>
> + @Test(dependsOnMethods = "testCreateEnvironment")
> + public void testListEnvironmentRecipes() {
> + Set<String> recipeList = api.listEnvironmentRecipes(PREFIX);
> + assertTrue(!recipeList.isEmpty());
> + }
> +
> + @Test(dependsOnMethods = "testCreateEnvironment")
> + public void testListEnvironmentNodes() {
> + api.deleteNode(ENV_NODE);
> + api.createNode(Node.builder().name(ENV_NODE).runListElement("role[" +
> PREFIX + "]").environment(PREFIX).build());
> + node = api.getNode(PREFIX);
Should this be `ENV_NODE`?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-chef/pull/12/files#r6147273