bear 0.1.1

A dead-simple test helper for rust.
docs.rs failed to build bear-0.1.1
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 Cargo version Build Status

Dead-simple test helper for rust. Documentations are here

Example

// tests/test.rs

extern crate bear;

use bear::fixture;

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

    /* Do whatever you want with it */
}

MIT License