huskies: merge 997

This commit is contained in:
dave
2026-05-14 11:01:06 +00:00
parent 0572af2193
commit c7a7cb4281
40 changed files with 256 additions and 253 deletions
@@ -96,7 +96,6 @@ mod tests {
None,
None,
None,
None,
);
assert!(has_review_hold("890_spike_held"));
}
@@ -112,7 +111,6 @@ mod tests {
None,
None,
None,
None,
);
assert!(!has_review_hold("890_spike_active_qa"));
}
@@ -186,7 +184,6 @@ mod tests {
"2_current",
Some("Blocked"),
None,
None,
Some("[999]"),
None,
);
@@ -196,21 +193,12 @@ mod tests {
#[test]
fn has_unmet_dependencies_returns_false_when_dep_done() {
crate::crdt_state::init_for_test();
crate::crdt_state::write_item_str(
"999_story_dep",
"5_done",
Some("Dep"),
None,
None,
None,
None,
);
crate::crdt_state::write_item_str("999_story_dep", "5_done", Some("Dep"), None, None, None);
crate::crdt_state::write_item_str(
"10_story_ok",
"2_current",
Some("Ok"),
None,
None,
Some("[999]"),
None,
);
@@ -227,7 +215,6 @@ mod tests {
None,
None,
None,
None,
);
assert!(!has_unmet_dependencies("5_story_free"));
}
@@ -245,14 +232,12 @@ mod tests {
None,
None,
None,
None,
);
crate::crdt_state::write_item_str(
"503_story_dependent",
"1_backlog",
Some("Dependent"),
None,
None,
Some("[500]"),
None,
);
@@ -271,14 +256,12 @@ mod tests {
None,
None,
None,
None,
);
crate::crdt_state::write_item_str(
"503_story_waiting",
"1_backlog",
Some("Waiting"),
None,
None,
Some("[490]"),
None,
);