#185 - Re-enable Postgres integration tests.

This commit is contained in:
Mark Paluch
2019-09-17 16:21:03 +02:00
parent 7362b45156
commit 2668ecb702
2 changed files with 0 additions and 19 deletions

View File

@@ -20,8 +20,6 @@ import io.r2dbc.spi.ConnectionFactory;
import javax.sql.DataSource;
import org.junit.ClassRule;
import org.junit.Ignore;
import org.junit.Test;
import org.springframework.data.r2dbc.testing.ExternalDatabase;
import org.springframework.data.r2dbc.testing.PostgresTestSupport;
@@ -31,7 +29,6 @@ import org.springframework.data.r2dbc.testing.PostgresTestSupport;
*
* @author Mark Paluch
*/
@Ignore("https://github.com/r2dbc/r2dbc-postgresql/issues/151")
public class PostgresDatabaseClientIntegrationTests extends AbstractDatabaseClientIntegrationTests {
@ClassRule public static final ExternalDatabase database = PostgresTestSupport.database();
@@ -51,18 +48,4 @@ public class PostgresDatabaseClientIntegrationTests extends AbstractDatabaseClie
return PostgresTestSupport.CREATE_TABLE_LEGOSET;
}
@Ignore("Adding RETURNING * lets Postgres report 0 affected rows.")
@Test
@Override
public void insert() {}
@Ignore("Postgres considers multiple references to the same parameter as multiple bindings (where name = $1 OR lastname = $1)")
@Test
@Override
public void executeSelectNamedParameters() {}
@Ignore("Adding RETURNING * lets Postgres report 0 affected rows.")
@Test
@Override
public void insertTypedObject() {}
}

View File

@@ -29,7 +29,6 @@ import javax.sql.DataSource;
import org.junit.Before;
import org.junit.ClassRule;
import org.junit.Ignore;
import org.junit.Test;
import org.springframework.data.annotation.Id;
@@ -44,7 +43,6 @@ import org.springframework.jdbc.core.JdbcTemplate;
*
* @author Mark Paluch
*/
@Ignore("https://github.com/r2dbc/r2dbc-postgresql/issues/151")
public class PostgresIntegrationTests extends R2dbcIntegrationTestSupport {
@ClassRule public static final ExternalDatabase database = PostgresTestSupport.database();