bear Cargo version Build Status

Dead-simple test helper for rust. Documentations are here

Example

```rust // tests/test.rs

extern crate bear;

use bear::fixture;

[test]

fn dosometest() { // Get a content of 'tests/fixtures/hello.obj' let content: String = fixture("hello.obj");

/* Do whatever you want with it */

} ```


MIT License