From a535c6575fde142bfea8cf5753521eb6948849fe Mon Sep 17 00:00:00 2001 From: Bryan Helmkamp Date: Sun, 1 Mar 2026 18:10:22 -0500 Subject: [PATCH] =?UTF-8?q?Rename=20kilroy=20=E2=86=92=20attractor=20in=20?= =?UTF-8?q?test=20directory=20and=20compat=20tests?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 --- .../{kilroy_compat.rs => attractor_compat.rs} | 62 +++++++++---------- test/{kilroy => attractor}/batch_clean.dot | 0 .../batch_has_errors.dot | 0 .../batch_warnings_only.dot | 0 test/{kilroy => attractor}/consensus_task.dot | 0 .../green_test_complex.dot | 0 .../green_test_moderate.dot | 0 .../green_test_vague.dot | 0 .../refactor_test_complex.dot | 0 .../refactor_test_moderate.dot | 0 .../refactor_test_vague.dot | 0 .../reference_template.dot | 0 test/{kilroy => attractor}/semport.dot | 0 test/{kilroy => attractor}/simple_example.dot | 0 test/{kilroy => attractor}/solitaire_fast.dot | 0 15 files changed, 31 insertions(+), 31 deletions(-) rename crates/arc-workflows/tests/{kilroy_compat.rs => attractor_compat.rs} (67%) rename test/{kilroy => attractor}/batch_clean.dot (100%) rename test/{kilroy => attractor}/batch_has_errors.dot (100%) rename test/{kilroy => attractor}/batch_warnings_only.dot (100%) rename test/{kilroy => attractor}/consensus_task.dot (100%) rename test/{kilroy => attractor}/green_test_complex.dot (100%) rename test/{kilroy => attractor}/green_test_moderate.dot (100%) rename test/{kilroy => attractor}/green_test_vague.dot (100%) rename test/{kilroy => attractor}/refactor_test_complex.dot (100%) rename test/{kilroy => attractor}/refactor_test_moderate.dot (100%) rename test/{kilroy => attractor}/refactor_test_vague.dot (100%) rename test/{kilroy => attractor}/reference_template.dot (100%) rename test/{kilroy => attractor}/semport.dot (100%) rename test/{kilroy => attractor}/simple_example.dot (100%) rename test/{kilroy => attractor}/solitaire_fast.dot (100%) diff --git a/crates/arc-workflows/tests/kilroy_compat.rs b/crates/arc-workflows/tests/attractor_compat.rs similarity index 67% rename from crates/arc-workflows/tests/kilroy_compat.rs rename to crates/arc-workflows/tests/attractor_compat.rs index 6458090b0..fbe7fa066 100644 --- a/crates/arc-workflows/tests/kilroy_compat.rs +++ b/crates/arc-workflows/tests/attractor_compat.rs @@ -2,9 +2,9 @@ use std::path::Path; use arc_workflows::parser::parse; -fn parse_kilroy_dot(filename: &str) -> Result { +fn parse_attractor_dot(filename: &str) -> Result { let path = Path::new(env!("CARGO_MANIFEST_DIR")) - .join("../../test/kilroy") + .join("../../test/attractor") .join(filename); let content = std::fs::read_to_string(&path) .map_err(|e| format!("failed to read {}: {e}", path.display()))?; @@ -12,12 +12,12 @@ fn parse_kilroy_dot(filename: &str) -> Result