Add test for groovy-xml parsing

pull/653/head
Dave Syer 11 years ago
parent 430fb51ca4
commit 435729812d

@ -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>

@ -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,

Loading…
Cancel
Save