rusty-playground/vanilla/tests/add_tests.rs

7 lines
91 B
Rust
Raw Normal View History

2020-10-10 17:00:59 +01:00
mod scaffold;
#[test]
fn add_test_1() {
scaffold::setup();
assert_eq!(4, 2 + 2);
}