Complete exercise: testing

This commit is contained in:
2026-05-25 16:27:58 +04:00
parent b25fe11bc7
commit d745026c1a
4 changed files with 37 additions and 5 deletions

View File

@@ -0,0 +1,6 @@
use testing::{sploosh, splish};
#[test]
pub fn test_sploosh_splish() {
assert_eq!(sploosh(splish(-1, 0), splish(1, 1), splish(3, 2)), 4);
}