Updated Branches: refs/heads/master 8da520758 -> e433c094c
Renamed test methods to match the new api naming convention Project: http://git-wip-us.apache.org/repos/asf/incubator-jclouds-chef/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-jclouds-chef/commit/e433c094 Tree: http://git-wip-us.apache.org/repos/asf/incubator-jclouds-chef/tree/e433c094 Diff: http://git-wip-us.apache.org/repos/asf/incubator-jclouds-chef/diff/e433c094 Branch: refs/heads/master Commit: e433c094c31ef637621737800bcd3d6faf60de24 Parents: 8da5207 Author: Noorul Islam K M <[email protected]> Authored: Mon Sep 16 18:43:27 2013 +0530 Committer: Ignasi Barrera <[email protected]> Committed: Mon Sep 16 15:43:22 2013 +0200 ---------------------------------------------------------------------- .../test/java/org/jclouds/chef/internal/BaseChefApiLiveTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-jclouds-chef/blob/e433c094/core/src/test/java/org/jclouds/chef/internal/BaseChefApiLiveTest.java ---------------------------------------------------------------------- diff --git a/core/src/test/java/org/jclouds/chef/internal/BaseChefApiLiveTest.java b/core/src/test/java/org/jclouds/chef/internal/BaseChefApiLiveTest.java index 84cc092..a742bd1 100644 --- a/core/src/test/java/org/jclouds/chef/internal/BaseChefApiLiveTest.java +++ b/core/src/test/java/org/jclouds/chef/internal/BaseChefApiLiveTest.java @@ -468,13 +468,13 @@ public abstract class BaseChefApiLiveTest<A extends ChefApi> extends BaseChefLiv } @Test(dependsOnMethods = "testCreateEnvironment") - public void testListEnvironmentRecipes() { + public void testListRecipesInEnvironment() { Set<String> recipeList = api.listRecipesInEnvironment(PREFIX); assertTrue(!recipeList.isEmpty()); } @Test(dependsOnMethods = "testCreateEnvironment") - public void testListEnvironmentNodes() { + public void testListNodesInEnvironment() { api.deleteNode(ENV_NODE); api.createNode(Node.builder().name(ENV_NODE).runListElement("role[" + PREFIX + "]").environment(PREFIX).build()); Node node = api.getNode(ENV_NODE);
