diff options
Diffstat (limited to 'crates/shirabe/tests/command/install_command_test.rs')
| -rw-r--r-- | crates/shirabe/tests/command/install_command_test.rs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/crates/shirabe/tests/command/install_command_test.rs b/crates/shirabe/tests/command/install_command_test.rs index 44c0df7..9bb5635 100644 --- a/crates/shirabe/tests/command/install_command_test.rs +++ b/crates/shirabe/tests/command/install_command_test.rs @@ -1 +1,16 @@ //! 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!() + } + }; +} + +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); |
