crunch/crates/crunch-postgres/tests/new_test.rs

9 lines
173 B
Rust
Raw Normal View History

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