sqlx-tester

Crates.iosqlx-tester
lib.rssqlx-tester
version0.1.0
sourcesrc
created_at2022-12-14 08:27:53.741583
updated_at2022-12-14 08:27:53.741583
descriptionlearn rust from the tyrchen
homepagehttps://github.com/dongjiahong/sqlx-tester
repositoryhttps://github.com/dongjiahong/sqlx-tester
max_upload_size
id736429
size19,200
jiahong.dong (dongjiahong)

documentation

https://docs.rs/

README

sqlx-db-tester

This a tool to test sqlx with postgres. It only supports tokio runtime at this moment.

How to use it

You should first create a TestDb data structure in your tests. It will automatically create a database and a connection pool for you. You could then get the connection string or connection pool from it to use in your own code. When TestDb gets dropped, it will automatically drop the database.

#[tokio::test]
fn some_awesom_test() {
    let tdb = TestDb::new("localhost", 5432, "postgres", "postgres", "./migrations");
    let pool = tdb.get_pool().await;
    // do something with the pool

    // when tdb gets dropped, the database will be dropped
}

Have fun with this crate!

License

This project is distributed under the terms of MIT.

See LICENSE for details.

Commit count: 6

cargo fmt