subtest-impl 0.0.1

Implementation detail of the `subtest` crate
Documentation
1
2
3
4
5
6
7
8
9
10
#[subtest]
#[test]
#[should_panic(expected = "my failure")]
fn parent() {
    #[subtest]
    fn child() {
        #[subtest]
        fn grandchild() {}
    }
}