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

7 lines
86 B
Rust
Raw Permalink Normal View History

2025-07-02 23:10:50 +02:00
use ${REPO_NAME_SNAKE}::add;
#[test]
fn test_add() {
assert_eq!(add(2, 2), 4);
}