rusty-playground/vanilla/tests/add_tests.rs

7 lines
91 B
Rust

mod scaffold;
#[test]
fn add_test_1() {
scaffold::setup();
assert_eq!(4, 2 + 2);
}