fluid
is an human readable test library.
The current goals of this crate are:
Iterator
s, Option
s, Result
s, etc.Add the crate in your Cargo.toml
:
```toml
[dev-dependencies] fluid = "0.1" ```
and in you main file:
```rust
use fluid::*; ```
```rust use fluid::*;
theory!(1 + 1).should().beequalto(2); ```
```rust use fluid::*;
theory!(1 + 1).should().not().beequalto(10); ```
```rust use fluid::*;
theory!(1 + 1).should().beequalto(2) .because("this is basic arithmetic"); ```
```rust,should_panic use fluid::*;
let myresult: Result
Displays:
```none The test failed at src/tests.rs:76: 'my_result' should not have been an error But it is: 'Err(())'
'my_result' should have contain '42'
But it does not.
This test should have pass because I must have the answer ```
```rust use fluid::*;
theory!(1.).should().beequalto(1.01).with_precision(0.1); ```
Result::Err
```rust use fluid::*;
let parseerror = match "?".parse::
Iterator
s```rust use fluid::*;
fn error(e: bool) -> Result
theory!(error(false)).should().contain(0); theory!(error(true)).should().not().contain(0); theory!(&[1, 2, 3]).should().not().contain(&0); ```