diff options
Diffstat (limited to 'crates/shirabe/tests/command/install_command_test.rs')
| -rw-r--r-- | crates/shirabe/tests/command/install_command_test.rs | 33 |
1 files changed, 21 insertions, 12 deletions
diff --git a/crates/shirabe/tests/command/install_command_test.rs b/crates/shirabe/tests/command/install_command_test.rs index 9bb5635..1774721 100644 --- a/crates/shirabe/tests/command/install_command_test.rs +++ b/crates/shirabe/tests/command/install_command_test.rs @@ -1,16 +1,25 @@ //! ref: composer/tests/Composer/Test/Command/InstallCommandTest.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_install_command_errors() { + todo!() } -stub!(test_install_command_errors); -stub!(test_install_from_empty_vendor); -stub!(test_install_from_empty_vendor_no_dev); -stub!(test_install_new_packages_with_existing_partial_vendor); +#[test] +#[ignore = "requires the ApplicationTester/initTempComposer harness, which is not yet ported"] +fn test_install_from_empty_vendor() { + todo!() +} + +#[test] +#[ignore = "requires the ApplicationTester/initTempComposer harness, which is not yet ported"] +fn test_install_from_empty_vendor_no_dev() { + todo!() +} + +#[test] +#[ignore = "requires the ApplicationTester/initTempComposer harness, which is not yet ported"] +fn test_install_new_packages_with_existing_partial_vendor() { + todo!() +} |
