test_deps
allows developers to define dependencies among tests.
```rust // Serial // A -> B -> C
fn test_a() {}
fn test_b() {}
fn test_c() {} ```
``rust
// Fork
// A -+-> B
//
-> C
fn test_a() {}
fn test_b() {}
fn test_c() {} ```
```rust // Merge // A --\ // B --+-> C
fn test_a() {}
fn test_b() {}
fn test_c() {} ```
Add
toml
[dev-dependencies]
test_deps = "0.1"
to your Cargo.toml and add
rust
use test_deps::deps;
to your test module.
See docs.rs.
MIT. See COPYING.