rust-lib-nix-template/tests/integration_test.rs

7 lines
86 B
Rust

use ${REPO_NAME_SNAKE}::add;
#[test]
fn test_add() {
assert_eq!(add(2, 2), 4);
}