blob: 29d52ee96540f18cf3924a4ba77c594a70ebe79c [file] [log] [blame]
#[test]
fn a() {
// Should pass
}
#[test]
fn b() {
assert!(false)
}
#[test]
#[should_panic]
fn c() {
assert!(false);
}
#[test]
#[ignore]
fn d() {
assert!(false);
}