Super early beta mode warning!!!
Basically a jest clone, the forky_test
crate will set you up with a beautiful test harness and intuitive matchers that are easy on the eyes.
- Features
- Pretty success messages
- In progress indicator
- Failure context logging
Add the following files:
Cargo.toml
toml
[[test]]
name = "forky"
path = "tests/main.rs"
harness = false
tests/main.rs
```rust
use forkytest::*;
mod mytest;
fn main() -> Result<(), MatcherError> { TestRunner::run() } ```
tests/my_test.rs
```rust
use forky_test::*;
describe!("my test", |s| { s.it("works", || { expect(true).tobefalse()?;
Ok(())
});
}); ```
cargo test --test forky
cargo watch -q -x 'test --test forky -- -w'
cargo test --test forky -- my_test