From 9edd5f410a6a73cbc32a3f5c0f8a8893730b1fdc Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sun, 21 Jun 2026 03:25:36 +0900 Subject: test(command): port AboutCommandTest Stubbed as todo!()/ignored: needs the ApplicationTester harness, not yet ported. Co-Authored-By: Claude Opus 4.8 (1M context) --- crates/shirabe/tests/command/about_command_test.rs | 6 ++++++ crates/shirabe/tests/command/main.rs | 1 + 2 files changed, 7 insertions(+) create mode 100644 crates/shirabe/tests/command/main.rs (limited to 'crates/shirabe/tests') diff --git a/crates/shirabe/tests/command/about_command_test.rs b/crates/shirabe/tests/command/about_command_test.rs index e1817f3..3f19885 100644 --- a/crates/shirabe/tests/command/about_command_test.rs +++ b/crates/shirabe/tests/command/about_command_test.rs @@ -1 +1,7 @@ //! ref: composer/tests/Composer/Test/Command/AboutCommandTest.php + +#[test] +#[ignore = "requires the ApplicationTester harness (TestCase::getApplicationTester), which is not yet ported"] +fn test_about() { + todo!() +} diff --git a/crates/shirabe/tests/command/main.rs b/crates/shirabe/tests/command/main.rs new file mode 100644 index 0000000..b2774dd --- /dev/null +++ b/crates/shirabe/tests/command/main.rs @@ -0,0 +1 @@ +mod about_command_test; -- cgit v1.3.1