Files
crunch/crates/crunch-postgres/tests/new_test.rs
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(())
}