summaryrefslogtreecommitdiffstats
path: root/third_party/rust/serial_test/tests/tests.rs
blob: add8b10decf8d6be33f3169d7cf1d852f4569822 (plain)
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");
    });
}