aboutsummaryrefslogtreecommitdiff
path: root/tests/with_map.rs
blob: 141ee5d3b793254aae570a4549fdd528789b0da1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#![feature(type_alias_impl_trait)]

pub mod helper_functions {
    use cutlass::curry;

    #[curry]
    pub fn product(x: u32, y: u32) -> u32 {
        return x * y;
    }
    #[curry]
    pub fn add(x: u32, y: u32) -> u32 {
        x + y
    }
}

#[cfg(test)]
mod tests {
    use super::helper_functions::{add, product};
    #[test]
    fn test_product() {
        assert_eq!(
            (1..=3).map(product(5)).collect::<Vec<u32>>(),
            vec![5, 10, 15]
        );
    }

    #[test]
    fn test_add() {
        let increment = add(1);
        let v: Vec<u32> = (1..=3).map(increment).collect();
        assert_eq!(v, vec![2, 3, 4]);
    }
}