Simple test

This commit is contained in:
Greg Shuflin 2022-02-20 12:10:34 -08:00
parent aa03bdad88
commit 56f003e8cc

View File

@ -163,3 +163,9 @@ lazy_static! {
pub static ref WRITER: Mutex<Writer> = pub static ref WRITER: Mutex<Writer> =
Mutex::new(Writer::new(ColorCode::new(Color::Yellow, Color::Black))); Mutex::new(Writer::new(ColorCode::new(Color::Yellow, Color::Black)));
} }
#[test_case]
fn test_println_simple() {
println!("Does this work?");
}