1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
//! [![github]](https://github.com/TaKO8Ki/testfixtures)
//!
//! [github]: https://img.shields.io/badge/github-8da0cb?labelColor=555555&logo=github
//!
//! This crate is a Rust library for preparing test data from yaml files.
//!
//! ## Examples
//! `todos.yml`
//! ```yml
//! - id: 1
//!   description: buy a new camera
//!   done: true
//!   progress: 10.5
//!   created_at: 2020/01/01 01:01:01
//! - id: 2
//!   description: meeting
//!   done: false
//!   progress: 30.0
//!   created_at: 2020/01/01 02:02:02
//! ```
//!
//!  ```rust
//! #[cfg(test)]
//! mod tests {
//!     use chrono::Utc;
//!     use sqlx::MySqlPool;
//!     use std::env;
//!     use testfixtures::MySqlLoader;
//!     #[async_std::test]
//!     async fn test_something() -> anyhow::Result<()> {
//!         let pool = MySqlPool::new(&env::var("DATABASE_URL")?).await?;
//!         let loader = MySqlLoader::new(|cfg| {
//!             cfg.location(Utc);
//!             cfg.database(pool);
//!             cfg.skip_test_database_check();
//!             cfg.paths(vec!["fixtures/todos.yml"]);
//!         })
//!         .await?;
//!
//!         // load your fixtures
//!         loader.load().await.unwrap();
//!
//!         // run your tests
//!         Ok(())
//!     }
//! }
//! ```

mod fixture_file;
mod helper;
mod loader;
mod mysql;

pub use fixture_file::{FixtureFile, InsertSql, SqlParam};
pub use helper::Database;
pub use loader::Loader;
pub use mysql::helper::MySql;
pub use mysql::loader::MySqlLoader;