Add test for gh-1776

This commit is contained in:
Dave Syer
2014-10-28 16:12:14 +00:00
parent b95e6fce6b
commit e2f2099197

View File

@@ -178,6 +178,17 @@ public class SpringApplicationBuilderTests {
assertThat(this.context.getEnvironment().getProperty("bar"), is(equalTo("spam")));
}
@Test
public void parentFirstWithDifferentProfile() throws Exception {
SpringApplicationBuilder application = new SpringApplicationBuilder(
ExampleConfig.class).profiles("node").properties("transport=redis")
.child(ChildConfig.class).profiles("admin").web(false);
this.context = application.run();
assertThat(this.context.getEnvironment().acceptsProfiles("node"), is(true));
assertThat(this.context.getParent().getEnvironment().acceptsProfiles("admin"),
is(false));
}
@Test
public void parentContextIdentical() throws Exception {
SpringApplicationBuilder application = new SpringApplicationBuilder(