1pub const TAB: &str = " "; 2pub const TAB_SIZE: usize = 4; 3pub const MAX_TEXT_WIDTH: usize = 100; 4 5#[cfg(test)] 6mod tests { 7 use super::*; 8 9 #[test] 10 fn tabs() { 11 assert_eq!(TAB_SIZE, TAB.len()); 12 } 13}