libtest-with 0.8.1-14

A slightly customized version of libtest-mimic, such that it can be easier create a test runner for test-with
Documentation
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() {}