expect(pipeline.execute(isA(HttpRequest.class))).andReturn(countryResponse);
HttpResponse allAllResponse = new HttpResponse(ALL_ALL_BUNDLE);
expect(pipeline.execute(isA(HttpRequest.class))).andReturn(allAllResponse);
replay(pipeline);
MessageBundle bundle = bundleFactory.getBundle(externalSpec, LOCALE, true, ContainerConfig.DEFAULT_CONTAINER, null);
verify(pipeline);
assertEquals("true", bundle.getMessages().get("lang"));
assertEquals("true", bundle.getMessages().get("country"));
assertEquals("true", bundle.getMessages().get("all"));
assertEquals(MSG_0_VALUE, bundle.getMessages().get(MSG_0_NAME));
}