mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-24 00:57:59 +00:00
19 lines
438 B
Java
19 lines
438 B
Java
import org.junit.*;
|
|
|
|
import play.twirl.api.Content;
|
|
|
|
|
|
import static play.test.Helpers.*;
|
|
import static org.fest.assertions.api.Assertions.*;
|
|
|
|
|
|
public class ApplicationTest {
|
|
private static String TEST_USER = "test";
|
|
private static String FAKE_CSRF_TOKEN = "token";
|
|
@Test
|
|
public void renderTemplate() {
|
|
Content html = views.html.index.render();
|
|
assertThat(contentType(html)).isEqualTo("text/html");
|
|
}
|
|
}
|