@Test public void testModuleName() throws Exception {
Map map=new HashMap();
map.put("META-INF/ejb-jar.xml","orange ");
final File file=Archives.jarArchive(map,"test",OrangeBean.class);
final Assembler assembler=new Assembler();
final ConfigurationFactory factory=new ConfigurationFactory();
final AppInfo appInfo=factory.configureApplication(file);
final EjbJarInfo ejbJarInfo=appInfo.ejbJars.get(0);
assertEquals("orange",ejbJarInfo.moduleName);
}