1mod text_styling; 2use crate::text_styling::*; 3 4 5 6 7#[cfg(test)] 8mod tests { 9 use super::*; 10 11 #[test] 12 fn test_apply_color() { 13 let mut chalk = Chalk::new(); 14 15 chalk.red("hello world").bold().underline().display(); 16 } 17}