From 37ed5b8c6d4cda30e668d0221eb281431dbc8c67 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Mon, 20 Jul 2026 16:04:45 +0900 Subject: test(ignore): document root causes for unannotated #[ignore] tests 74 tests carried a bare #[ignore] with no explanation. Re-ran each: 25 now pass and had the attribute removed; the remaining 49 got a concise reason (todo!() stubs, regex-crate PCRE gaps, PhpMixed type mismatches, config bool-coercion bugs, missing skipped_load wiring in PoolBuilder, etc.) so future work can find and fix them by grep. No production code or test logic/assertions were changed. Co-Authored-By: Claude Sonnet 5 --- crates/shirabe/tests/command/base_dependency_command_test.rs | 3 --- 1 file changed, 3 deletions(-) (limited to 'crates/shirabe/tests/command/base_dependency_command_test.rs') diff --git a/crates/shirabe/tests/command/base_dependency_command_test.rs b/crates/shirabe/tests/command/base_dependency_command_test.rs index 30de8432..41ad362d 100644 --- a/crates/shirabe/tests/command/base_dependency_command_test.rs +++ b/crates/shirabe/tests/command/base_dependency_command_test.rs @@ -117,7 +117,6 @@ fn test_exception_when_running_locked_without_lock_file() { /// ref: BaseDependencyCommandTest::testExceptionWhenItCouldNotFoundThePackage. #[test] #[serial] -#[ignore] fn test_exception_when_it_could_not_found_the_package() { // caseProvider let cases: Vec<(&str, Vec<(&str, PhpMixed)>)> = vec![ @@ -164,7 +163,6 @@ fn test_exception_when_it_could_not_found_the_package() { /// ref: BaseDependencyCommandTest::testExceptionWhenPackageWasNotFoundInProject. #[test] #[serial] -#[ignore] fn test_exception_when_package_was_not_found_in_project() { // caseProvider let cases: Vec<(&str, Vec<(&str, PhpMixed)>)> = vec![ @@ -287,7 +285,6 @@ fn test_warning_when_dependencies_are_not_installed() { /// ref: BaseDependencyCommandTest::testWhyCommandOutputs (caseWhyProvider rolled in). #[test] #[serial] -#[ignore] fn test_why_command_outputs() { // caseWhyProvider: (package, --tree, --recursive, expected_output, expected_status_code) let cases: Vec<(&str, bool, bool, &str, i32)> = vec![ -- cgit v1.3.1