aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/tests/autoload/autoload_generator_test.rs
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-08-16 16:26:21 +0900
committernsfisis <nsfisis@gmail.com>2026-08-16 17:34:46 +0900
commit494f79d0caf614325408d82d5c7a58f9e4396590 (patch)
tree5e6256fe40b650b44660cb43232e4da4a6140c29 /crates/shirabe/tests/autoload/autoload_generator_test.rs
parent7e7837a559310792dcf312e0c52857450ed781dc (diff)
downloadphp-shirabe-494f79d0caf614325408d82d5c7a58f9e4396590.tar.gz
php-shirabe-494f79d0caf614325408d82d5c7a58f9e4396590.tar.zst
php-shirabe-494f79d0caf614325408d82d5c7a58f9e4396590.zip
test: correct stale #[ignore] reasons
Running the ignored tests shows several reasons naming a blocker the test never reaches. The plugin hooks in all_functional_test do run, and what stops both cases is the worker's Composer\InstalledVersions; class_loader_test stops at include_file, not class_exists; auth_helper_test's wrapper is ported and the blocker is trigger_error; composerRequire is ported as __shirabe_composer_require. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Diffstat (limited to 'crates/shirabe/tests/autoload/autoload_generator_test.rs')
-rw-r--r--crates/shirabe/tests/autoload/autoload_generator_test.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/shirabe/tests/autoload/autoload_generator_test.rs b/crates/shirabe/tests/autoload/autoload_generator_test.rs
index 4efcc7e0..0f1a42d2 100644
--- a/crates/shirabe/tests/autoload/autoload_generator_test.rs
+++ b/crates/shirabe/tests/autoload/autoload_generator_test.rs
@@ -1745,7 +1745,7 @@ fn test_exclude_from_classmap() {
}
#[test]
-#[ignore = "require autoload.php + function_exists() assertions are unportable (composer_require todo!())"]
+#[ignore = "asserts function_exists() after requiring the generated autoload.php inside the test process; there is no PHP interpreter to evaluate that file"]
fn test_files_autoload_order_by_dependencies() {
// TODO(php-runtime): PHP `require autoload.php` + function_exists() assertions have no Rust
// equivalent (no runtime PHP file loading/class definition).