1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
pub mod is_equal; pub mod is_not_equal; pub mod string; #[cfg(test)] mod tests { use super::*; #[test] fn test_exec() { let a = "he"; let b = "hi"; string::matches_length(&a, &b); } }