Add test for groovy-xml parsing

This commit is contained in:
Dave Syer 2014-04-04 18:28:49 +01:00
parent 430fb51ca4
commit 435729812d
2 changed files with 16 additions and 0 deletions

View File

@ -74,6 +74,11 @@
<artifactId>groovy</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-xml</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-webapp</artifactId>

View File

@ -70,6 +70,17 @@ public class BeanDefinitionLoaderTests {
}
@Test
public void loadGroovyResourceWithNamespace() throws Exception {
ClassPathResource resource = new ClassPathResource("sample-namespace.groovy",
getClass());
BeanDefinitionLoader loader = new BeanDefinitionLoader(this.registry, resource);
int loaded = loader.load();
assertThat(loaded, equalTo(1));
assertTrue(this.registry.containsBean("myGroovyComponent"));
}
@Test
public void loadPackage() throws Exception {
BeanDefinitionLoader loader = new BeanDefinitionLoader(this.registry,