1
2
3
4
5
6
7
#[cfg(test)]
mod test_basic {
    #[test]
    fn app_creation() {
        assert_eq!(1, 1);
    }
}