Merge branch '1.2.x'

This commit is contained in:
Phillip Webb
2015-06-30 15:04:06 -07:00
5 changed files with 81 additions and 24 deletions

View File

@@ -20,12 +20,14 @@ import java.util.Locale;
import org.junit.Before;
import org.junit.Test;
import org.springframework.boot.autoconfigure.mustache.web.MustacheViewResolver;
import org.springframework.mock.web.MockServletContext;
import org.springframework.web.context.support.StaticWebApplicationContext;
import org.springframework.web.servlet.View;
import static org.hamcrest.Matchers.equalTo;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertThat;
/**
* Tests for {@link MustacheViewResolver}.
@@ -74,4 +76,12 @@ public class MustacheViewResolverTests {
assertNotNull(this.resolver.resolveViewName("foo", new Locale("de")));
}
@Test
public void setsContentType() throws Exception {
this.resolver.setContentType("application/octet-stream");
View view = this.resolver.resolveViewName("foo", null);
assertThat(view.getContentType(), equalTo("application/octet-stream"));
}
}