1 2 3 4 5 6 7 8 9 10 11 12 13
#![allow(clippy::assertions_on_constants)] use hel_time::{iso8601utc, utc}; #[test] #[ignore = "to see output run 'rust t -- --ignored'"] fn output_iso8601utc() { println!("{}", iso8601utc()); println!("{:?}", utc()); assert!(false); }