diff options
Diffstat (limited to 'crates/shirabe/tests/command/suggests_command_test.rs')
| -rw-r--r-- | crates/shirabe/tests/command/suggests_command_test.rs | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/crates/shirabe/tests/command/suggests_command_test.rs b/crates/shirabe/tests/command/suggests_command_test.rs index 21e9ec7..ca4d9a2 100644 --- a/crates/shirabe/tests/command/suggests_command_test.rs +++ b/crates/shirabe/tests/command/suggests_command_test.rs @@ -1,14 +1,13 @@ //! ref: composer/tests/Composer/Test/Command/SuggestsCommandTest.php -macro_rules! stub { - ($name:ident) => { - #[test] - #[ignore = "requires the ApplicationTester/initTempComposer harness, which is not yet ported"] - fn $name() { - todo!() - } - }; +#[test] +#[ignore = "requires the ApplicationTester/initTempComposer harness, which is not yet ported"] +fn test_installed_packages_with_no_suggestions() { + todo!() } -stub!(test_installed_packages_with_no_suggestions); -stub!(test_suggest); +#[test] +#[ignore = "requires the ApplicationTester/initTempComposer harness, which is not yet ported"] +fn test_suggest() { + todo!() +} |
