1 2 3 4 5 6 7 8 9 10
#[test] fn not_ignored() {} #[test] #[ignore] fn normally_ignored() {} #[test] #[ignore = "special message"] fn ignored_with_message() {}