diff options
| -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; |
