Dead-simple test helper for rust. Documentations are here
toml
[dev-dependencies]
bear = "*"
```rust extern crate bear;
use bear::fixture;
fn dosometest() { // Get a content of 'tests/fixtures/hello.txt' let content: String = fixture("hello.txt");
/* Do whatever you want with it */
} ```