An RSpec-style test framework for Rust.
Yotsuba is a collection of macros and matchers that allow for quicker testing and more readable tests.
```rust
fn yourcoolfunction(num: u64) -> u64 { return num * num }
describe!(yourcoolfunction, { it!(doeswhatyouthinkitdoes, { let coolresult = yourcoolfunction(5); expect!(cool_result; to equal 25) });
it!(doesnotdowhatitshouldnot, { let coolresult = yourcoolfunction(10); expect!(coolresult; to not_equal 7) }); }); ```