bear 0.2.0

A dead-simple test helper for rust.
docs.rs failed to build bear-0.2.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: bear-0.2.2

bear

Dead-simple test helper for rust. Documentations are here

Example

Cargo.toml
[dev-dependencies]
bear = "*"
tests/test.rs
extern crate bear;

use bear::fixture;

#[test]
fn do_some_test() {
    // Get a content of 'tests/fixtures/hello.txt'
    let content: String = fixture("hello.txt");

    /* Do whatever you want with it */
}

BSD 2-Clause