I'm a big fan of testfixtures. It allowed me to implement integration tests with PostgreSQL and MySQL. Now that our team has adopted Spanner, we are missing the convenience testfixtures provide to generate test data declaratively.
We can use github.com/googleapis/go-sql-spanner which is compatible with database/sql.
I'm a big fan of
testfixtures
. It allowed me to implement integration tests with PostgreSQL and MySQL. Now that our team has adopted Spanner, we are missing the conveniencetestfixtures
provide to generate test data declaratively.We can use github.com/googleapis/go-sql-spanner which is compatible with
database/sql
.