5次发布
0.2.2 | 2020年9月9日 |
---|---|
0.2.1 | 2020年9月9日 |
0.2.0 | 2015年2月20日 |
0.1.1 | 2014年12月7日 |
0.1.0 | 2014年12月7日 |
#379 in 测试
每月 21次下载
4KB
bear
Dead-simple test helper for rust. See documentation for the further details.
示例
# 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.
示例
use bear::fixture;
// Get a content of 'tests/fixtures/hello.txt'
let content = fixture("hello.txt");
// Do whatever you want with it