@Test
public void testCreateExcludeRule() {
String configurationName = "someConf";
Map excludeRuleArgs = GUtil.map(ExcludeRule.GROUP_KEY, "someOrg", ExcludeRule.MODULE_KEY, "someModule");
org.apache.ivy.core.module.descriptor.ExcludeRule ivyExcludeRule =
new DefaultExcludeRuleConverter().createExcludeRule(configurationName, new DefaultExcludeRule(excludeRuleArgs));
assertThat(ivyExcludeRule.getId().getModuleId().getOrganisation(),
Matchers.equalTo(excludeRuleArgs.get(ExcludeRule.GROUP_KEY)));
assertThat(ivyExcludeRule.getId().getName(),
Matchers.equalTo(PatternMatcher.ANY_EXPRESSION));
assertThat(ivyExcludeRule.getId().getExt(),