serial_test 0.2.0

Helper crate for serial_test_derive
Documentation
1
2
3
4
5
6
7
8
use serial_test::serial_core;

#[test]
fn test_empty_serial_call() {
    serial_core("beta", || {
        println!("Bar");
    });
}