3 个不稳定版本
使用旧的 Rust 2015
0.2.0 | 2019年8月24日 |
---|---|
0.1.1 | 2019年5月13日 |
0.1.0 | 2018年6月23日 |
#6 in #purpose
17KB
272 代码行数(不包括注释)
Spy
Spy 库受著名的 JavaScript 测试工具 Jasmine 和 Sinon.js 的启发。它提供易于配置的具有预定义行为的间谍。
#[test]
fn iterator_all_test() {
let integers = vec![0i32, 1i32, 2i32];
// create spy function that returns true if provided
// argument is an even number
let (spy_fn, spy) = spy!(|n| n % 2 == 0);
// test call
let res = integers.iter().all(spy_fn);
// check Iterator::all result
assert!(!res, "should be false");
// take a snapshot of made calls
let snapshot = spy.snapshot();
// make assertions
assert!(snapshot.called(), "should be called");
assert!(
snapshot.called_with(&(&1i32)),
"should be called with 1i32 at least once"
);
assert!(
!snapshot.each_called_with(&(&1i32)),
"should be called with different arguments"
);
assert_eq!(snapshot.all_calls(), &vec![(&0i32), (&1i32)]);
assert_eq!(snapshot.first_call().expect("should be Some"), &(&0i32));
assert_eq!(snapshot.last_call().expect("should be Some"), &(&1i32));
assert_eq!(snapshot.nth_call(1).expect("should be Some"), &(&1i32));
}
许可证
Spy 在 MIT 和 Apache-2.0 许可证下发布