serial_test 2.0.0

Allows for the creation of serialised Rust tests
Documentation
1
2
3
4
5
6
7
8
use serial_test::local_serial_core;

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