aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/tests/command/bump_command_test.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/tests/command/bump_command_test.rs')
-rw-r--r--crates/shirabe/tests/command/bump_command_test.rs14
1 files changed, 14 insertions, 0 deletions
diff --git a/crates/shirabe/tests/command/bump_command_test.rs b/crates/shirabe/tests/command/bump_command_test.rs
index 3478643..70adc30 100644
--- a/crates/shirabe/tests/command/bump_command_test.rs
+++ b/crates/shirabe/tests/command/bump_command_test.rs
@@ -1 +1,15 @@
//! ref: composer/tests/Composer/Test/Command/BumpCommandTest.php
+
+macro_rules! stub {
+ ($name:ident) => {
+ #[test]
+ #[ignore = "requires the ApplicationTester/initTempComposer harness, which is not yet ported"]
+ fn $name() {
+ todo!()
+ }
+ };
+}
+
+stub!(test_bump);
+stub!(test_bump_fails_on_non_existing_composer_file);
+stub!(test_bump_fails_on_write_error_to_composer_file);