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