summaryrefslogtreecommitdiff
path: root/src/lib.rs
blob: 4fcc17ab1e2af62ccbc3b4ae92ced9319cf85fbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod emotes;

}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn it_works() {
        let result = add(2, 2);
        assert_eq!(result, 4);
    }
}