Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
d-e-s-o committed Jan 5, 2025
1 parent 756d49e commit 681d1e1
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions tests/prototype.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,15 @@

#[test_log::test]
fn it_works() {
tracing::debug!("tracing::DEBUG");
tracing::info!("tracing::INFO");
tracing::warn!("tracing::WARN");
tracing::error!("tracing::ERROR");

logging::debug!("log::DEBUG");
logging::info!("log::INFO");
logging::warn!("log::WARN");
logging::error!("log::ERROR");

assert_eq!(2 + 2, 4);
}

0 comments on commit 681d1e1

Please sign in to comment.