1 2 3 4 5 6 7 8 9 10 11
#[test] fn default() { let cs = clearscreen::ClearScreen::default(); dbg!(&cs); cs.clear().unwrap(); } #[test] fn shorthand() { clearscreen::clear().unwrap(); }