mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-13 20:21:33 +00:00
22 lines
434 B
Java
22 lines
434 B
Java
import org.junit.*;
|
|
|
|
import play.libs.ws.WS;
|
|
|
|
import static play.test.Helpers.*;
|
|
import static org.fest.assertions.api.Assertions.*;
|
|
|
|
@Ignore
|
|
public class IntegrationTest {
|
|
|
|
@Test
|
|
public void test() {
|
|
|
|
running(testServer(3333), new Runnable() {
|
|
public void run() {
|
|
assertThat(WS.url("http://localhost:3333").get().get(1000*60).getStatus()).isEqualTo(OK);
|
|
}
|
|
});
|
|
}
|
|
|
|
}
|