mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-07 17:23:11 +00:00

* Rename web to wherehows-api and update README. * Rename backend-service to wherehows-backend * Rename metadata-etl to wherehows-etl * Rename hadoop-dataset-extractor-standalone to wherehows-hadoop
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);
|
|
}
|
|
});
|
|
}
|
|
|
|
}
|