1 2 3 4 5 6 7 8 9 10 11 12 13
pub mod conv; pub mod fileu; pub mod structure; #[cfg(test)] mod tests { #[test] fn test_filepath_to_content() { let s: String = super::fileu::filepath_to_content("sample").unwrap(); assert_eq!(String::from("aaaaa\neeeee\n"), s); } }