bear

Dead-simple test helper for rust. Documentations are here

Example

Cargo.toml

toml [dev-dependencies] bear = "*"

tests/test.rs

```rust extern crate bear;

use bear::fixture;

[test]

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

/* Do whatever you want with it */

} ```


BSD 2-Clause