pg-ephemeral 0.2.2

Ephemeral PostgreSQL instances for testing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod common;

#[tokio::test]
async fn test_ruby_database_url_integration() {
    common::test_database_url_integration("ruby", "tests/integration/ruby", &common::RUBY_IMAGE)
        .await
}

#[tokio::test]
async fn test_prisma_database_url_integration() {
    common::test_database_url_integration("prisma", "tests/integration/prisma", &common::NODE_IMAGE)
        .await
}