public void testCreateExcludeRule() {
String configurationName = "someConf";
final String someOrg = "someOrg";
final String someModule = "someModule";
org.apache.ivy.core.module.descriptor.ExcludeRule ivyExcludeRule =
new DefaultExcludeRuleConverter().createExcludeRule(configurationName, new DefaultExcludeRule(someOrg, someModule));
assertThat(ivyExcludeRule.getId().getModuleId().getOrganisation(),
Matchers.equalTo(someOrg));
assertThat(ivyExcludeRule.getId().getName(),
Matchers.equalTo(PatternMatcher.ANY_EXPRESSION));
assertThat(ivyExcludeRule.getId().getExt(),