2 个不稳定版本
0.2.0 | 2023年4月18日 |
---|---|
0.1.0 | 2023年4月14日 |
#2426 在 开发工具
23 每月下载量
10KB
175 代码行
sqlx-db-tester
这是一个测试 sqlx 和 postgres 的工具。目前只支持 tokio 运行时。
如何使用
您应该在测试中首先创建一个 TestDb
数据结构。它将自动为您创建数据库和连接池。然后您可以从其中获取连接字符串或连接池以用于您的代码。当 TestDb
被丢弃时,它将自动删除数据库。
#[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
}
享受这个库带来的乐趣吧!
许可证
本项目根据 MIT 许可证分发。
详情请见 LICENSE。
版权所有 2022 Tyr Chen
依赖
~20–32MB
~578K SLoC