Super'ing to a mod

This commit is contained in:
Dan Buch 2018-01-02 22:48:42 -05:00
parent 25f25b8f1a
commit 66b59c0479
Signed by: meatballhat
GPG Key ID: 9685130D8B763EA7

View File

@ -4,8 +4,10 @@ pub mod network;
#[cfg(test)] #[cfg(test)]
mod tests { mod tests {
use super::client;
#[test] #[test]
fn it_works() { fn it_works() {
assert_eq!(2 + 2, 4); client::connect();
} }
} }