bear 0.2.2

A dead-simple test helper for rust.
Documentation
1
2
3
4
5
6
7
8
extern crate bear;

use bear::fixture;

#[test]
fn test_fixture() {
    assert_eq!(fixture("hello.txt"), "Hello, world!\n".to_string());
}