rust-reime005-test 0.2.0

List WiFi hotspots in your area
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod reime005 {
    pub fn magic() -> i32 {
        42
    }
}

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

    #[test]
    fn it_works() {
        assert_eq!(magic(), 42);
    }
}