huskies: merge 1009

This commit is contained in:
dave
2026-05-13 22:50:13 +00:00
parent a5cd3a2152
commit 4e007bb770
56 changed files with 453 additions and 384 deletions
@@ -97,8 +97,6 @@ mod tests {
None,
None,
None,
None,
None,
);
assert!(has_review_hold("890_spike_held"));
}
@@ -115,8 +113,6 @@ mod tests {
None,
None,
None,
None,
None,
);
assert!(!has_review_hold("890_spike_active_qa"));
}
@@ -193,8 +189,6 @@ mod tests {
None,
Some("[999]"),
None,
None,
None,
);
assert!(has_unmet_dependencies("10_story_blocked"));
}
@@ -210,8 +204,6 @@ mod tests {
None,
None,
None,
None,
None,
);
crate::crdt_state::write_item_str(
"10_story_ok",
@@ -221,8 +213,6 @@ mod tests {
None,
Some("[999]"),
None,
None,
None,
);
assert!(!has_unmet_dependencies("10_story_ok"));
}
@@ -238,8 +228,6 @@ mod tests {
None,
None,
None,
None,
None,
);
assert!(!has_unmet_dependencies("5_story_free"));
}
@@ -258,8 +246,6 @@ mod tests {
None,
None,
None,
None,
None,
);
crate::crdt_state::write_item_str(
"503_story_dependent",
@@ -269,8 +255,6 @@ mod tests {
None,
Some("[500]"),
None,
None,
None,
);
let archived_deps = check_archived_dependencies("503_story_dependent");
assert_eq!(archived_deps, vec![500]);
@@ -288,8 +272,6 @@ mod tests {
None,
None,
None,
None,
None,
);
crate::crdt_state::write_item_str(
"503_story_waiting",
@@ -299,8 +281,6 @@ mod tests {
None,
Some("[490]"),
None,
None,
None,
);
let archived_deps = check_archived_dependencies("503_story_waiting");
assert!(archived_deps.is_empty());