Chore(Stage): Initial Commit

This commit is contained in:
Tochukwu Nkemdilim
2018-06-13 18:41:24 +01:00
commit 1535d3d768
12 changed files with 305 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#![allow(dead_code)]
mod connectivity;
pub use connectivity::profile_network::ProfileNetwork as WiFi;
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn connect_to_wifi_failed() {
let wifi = WiFi::new("hello").unwrap();
assert_eq!(wifi.connect("password"), false);
}
}