aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/tests/command/licenses_command_test.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/tests/command/licenses_command_test.rs')
-rw-r--r--crates/shirabe/tests/command/licenses_command_test.rs19
1 files changed, 19 insertions, 0 deletions
diff --git a/crates/shirabe/tests/command/licenses_command_test.rs b/crates/shirabe/tests/command/licenses_command_test.rs
index 7b3c44f..e1dfe20 100644
--- a/crates/shirabe/tests/command/licenses_command_test.rs
+++ b/crates/shirabe/tests/command/licenses_command_test.rs
@@ -1 +1,20 @@
//! ref: composer/tests/Composer/Test/Command/LicensesCommandTest.php
+
+macro_rules! stub {
+ ($name:ident) => {
+ #[test]
+ #[ignore = "requires the ApplicationTester/initTempComposer harness, which is not yet ported"]
+ fn $name() {
+ todo!()
+ }
+ };
+}
+
+stub!(test_basic_run);
+stub!(test_no_dev);
+stub!(test_format_json);
+stub!(test_format_summary);
+stub!(test_format_unknown);
+stub!(test_locked);
+stub!(test_locked_no_dev);
+stub!(test_locked_without_lock_file);