rust-book/adder/tests/integration_test.rs

10 lines
113 B
Rust
Raw Normal View History

2019-01-31 15:09:52 -05:00
use adder;
mod common;
#[test]
fn it_adds_two() {
common::setup();
assert_eq!(4, adder::add_two(2));
}