mirror of https://github.com/apache/jclouds.git
Renamed test methods to match the new api naming convention
This commit is contained in:
parent
58784cc492
commit
15b1da6014
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue