Dead-simple test helper for rust. See [documentation] for the further details.
```toml
[dev-dependencies]
bear = "0.2"
rust
// tests/test.rs
extern crate bear;
use bear::fixture;
fn dosometest() { // Get a content of 'tests/fixtures/hello.txt' let content = fixture("hello.txt");
// Do whatever you want with it
} ```