crunch/crates/crunch-postgres/tests/new_test.rs
kjuulh bc28451f8d
feat: with tx on all
Signed-off-by: kjuulh <contact@kjuulh.io>
2023-10-03 23:08:12 +02:00

9 lines
173 B
Rust

use crunch_postgres::PostgresPersistence;
#[tokio::test]
async fn test_new_from_env() -> anyhow::Result<()> {
PostgresPersistence::new_from_env().await?;
Ok(())
}