aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/tests/command/config_command_test.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/tests/command/config_command_test.rs')
-rw-r--r--crates/shirabe/tests/command/config_command_test.rs16
1 files changed, 16 insertions, 0 deletions
diff --git a/crates/shirabe/tests/command/config_command_test.rs b/crates/shirabe/tests/command/config_command_test.rs
index f7a3a96..b0e1b97 100644
--- a/crates/shirabe/tests/command/config_command_test.rs
+++ b/crates/shirabe/tests/command/config_command_test.rs
@@ -1 +1,17 @@
//! ref: composer/tests/Composer/Test/Command/ConfigCommandTest.php
+
+macro_rules! stub {
+ ($name:ident) => {
+ #[test]
+ #[ignore = "requires the ApplicationTester/initTempComposer harness, which is not yet ported"]
+ fn $name() {
+ todo!()
+ }
+ };
+}
+
+stub!(test_config_updates);
+stub!(test_config_reads);
+stub!(test_config_throws_for_invalid_arg_combination);
+stub!(test_config_throws_for_invalid_severity);
+stub!(test_config_throws_when_merging_array_with_object);