5 releases
0.2.2 | Sep 9, 2020 |
---|---|
0.2.1 | Sep 9, 2020 |
0.2.0 | Feb 20, 2015 |
0.1.1 | Dec 7, 2014 |
0.1.0 | Dec 7, 2014 |
#379 in Testing
21 downloads per month
4KB
bear
Dead-simple test helper for rust. See documentation for the further details.
Example
# Cargo.toml
[dev-dependencies]
bear = "0.2"
// tests/test.rs
extern crate bear;
use bear::fixture;
#[test]
fn do_some_test() {
// Get a content of 'tests/fixtures/hello.txt'
let content = fixture("hello.txt");
// Do whatever you want with it
}
lib.rs
:
A dead-simple test helper for rust.
Example
use bear::fixture;
// Get a content of 'tests/fixtures/hello.txt'
let content = fixture("hello.txt");
// Do whatever you want with it