diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-06-21 03:25:36 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-06-21 03:25:36 +0900 |
| commit | 9edd5f410a6a73cbc32a3f5c0f8a8893730b1fdc (patch) | |
| tree | 9ff2e51836dffdfa0537cab4693353472286b6a9 | |
| parent | 4763fc783ec6eaa9c1c99ce7a820d4f4eaddc2fc (diff) | |
| download | php-shirabe-9edd5f410a6a73cbc32a3f5c0f8a8893730b1fdc.tar.gz php-shirabe-9edd5f410a6a73cbc32a3f5c0f8a8893730b1fdc.tar.zst php-shirabe-9edd5f410a6a73cbc32a3f5c0f8a8893730b1fdc.zip | |
test(command): port AboutCommandTest
Stubbed as todo!()/ignored: needs the ApplicationTester harness, not yet ported.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
| -rw-r--r-- | crates/shirabe/tests/command/about_command_test.rs | 6 | ||||
| -rw-r--r-- | crates/shirabe/tests/command/main.rs | 1 |
2 files changed, 7 insertions, 0 deletions
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; |
