From 822d9a872807a92a5337ee8b7bab96dc9845cdbb Mon Sep 17 00:00:00 2001 From: nsfisis Date: Mon, 22 Jun 2026 02:09:59 +0900 Subject: test: port more test cases Co-Authored-By: Claude Opus 4.8 (1M context) --- crates/shirabe/tests/autoload/class_loader_test.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crates/shirabe/tests/autoload/class_loader_test.rs') diff --git a/crates/shirabe/tests/autoload/class_loader_test.rs b/crates/shirabe/tests/autoload/class_loader_test.rs index 68a0ba4..66cc3e8 100644 --- a/crates/shirabe/tests/autoload/class_loader_test.rs +++ b/crates/shirabe/tests/autoload/class_loader_test.rs @@ -6,7 +6,7 @@ use shirabe::autoload::class_loader::ClassLoader; // class_exists(). There is no equivalent runtime notion of loading and defining a // class in Rust, so this case cannot be ported faithfully. #[test] -#[ignore = "relies on PHP loadClass()/class_exists() runtime class loading, which has no Rust equivalent"] +#[ignore = "depends on PHP runtime class_exists() to verify loadClass defined a class; no Rust equivalent"] fn test_load_class() { todo!() } @@ -20,7 +20,7 @@ fn test_get_prefixes_with_no_psr0_configuration() { // In PHP this serializes the loader and unserializes it, then compares every getter. // PHP serialize()/unserialize() has no Rust equivalent here. #[test] -#[ignore = "relies on PHP serialize()/unserialize() round-tripping of the ClassLoader, which is not ported"] +#[ignore = "depends on PHP serialize()/unserialize() round-trip of ClassLoader; no Rust equivalent"] fn test_serializability() { todo!() } -- cgit v1.3.1