Better run_test! macro param naming
This commit is contained in:
parent
c01566cc69
commit
367e160075
@ -64,26 +64,31 @@ cfg_if! {
|
|||||||
use paste::paste;
|
use paste::paste;
|
||||||
|
|
||||||
macro_rules! run_test {
|
macro_rules! run_test {
|
||||||
($mod:ident, $func:ident) => {
|
// Nearly all test runner code is cookie cutter, and copy-pasting makes it too easy to make a typo.
|
||||||
|
|
||||||
|
// Pass in a module and test module, and we'll run its `test_all`.
|
||||||
|
($parent_module:ident, $test_module:ident) => {
|
||||||
paste! {
|
paste! {
|
||||||
#[test]
|
#[test]
|
||||||
#[serial]
|
#[serial]
|
||||||
fn [<run_ $mod _ $func>]() {
|
fn [<run_ $parent_module _ $test_module>]() {
|
||||||
setup();
|
setup();
|
||||||
block_on(async {
|
block_on(async {
|
||||||
$mod::tests::$func::test_all().await;
|
$parent_module::tests::$test_module::test_all().await;
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
($func:ident) => {
|
|
||||||
|
// Pass in a test module name, and we'll run its `test_all`.
|
||||||
|
($test_module:ident) => {
|
||||||
paste! {
|
paste! {
|
||||||
#[test]
|
#[test]
|
||||||
#[serial]
|
#[serial]
|
||||||
fn [<run_ $func>]() {
|
fn [<run_ $test_module>]() {
|
||||||
setup();
|
setup();
|
||||||
block_on(async {
|
block_on(async {
|
||||||
$func::test_all().await;
|
$test_module::test_all().await;
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user