7 lines
145 B
Rust
7 lines
145 B
Rust
use testing::{sploosh, splish};
|
|
|
|
#[test]
|
|
pub fn test_sploosh_splish() {
|
|
assert_eq!(sploosh(splish(-1, 0), splish(1, 1), splish(3, 2)), 4);
|
|
}
|