See the documentation
To test this crate, you need to start a Postgres
database and export the DATABASE_URL
environment variable.
You can use the provided docker-compose
plan
```sh
docker-compose -f docker-compose.testing.yml up -d
export DATABASE_URL="postgres://postgres:postgres@localhost/postgres"
cargo test
docker-compose -f docker-compose.testing.yml down -v ```