refactor: remove workflow machinery

This commit is contained in:
2026-07-16 05:45:24 +09:00
parent 83ad7506d7
commit d801b2698b
64 changed files with 141 additions and 4055 deletions
-1
View File
@@ -425,7 +425,6 @@ mod tests {
&root.join(".yoi/memory/_logs/ignored.md"),
"not frontmatter",
);
write(&root.join(".yoi/workflow/ignored.md"), "not frontmatter");
let report = lint_workspace(root).unwrap();
assert_eq!(
+2 -3
View File
@@ -1196,9 +1196,8 @@ mod tests {
assert!(config.contains("# language = \"Japanese\""));
for role in TicketRole::ALL {
assert!(config.contains(&format!(
"[ticket.roles.{role}]\nprofile = \"{}\"\nworkflow = \"{}\"",
role.default_profile(),
role.default_workflow()
"[ticket.roles.{role}]\nprofile = \"{}\"",
role.default_profile()
)));
}
assert!(!config.contains("[ticket.roles.investigator]"));