huskies: merge 946

This commit is contained in:
dave
2026-05-13 07:54:50 +00:00
parent 4a0fbcaa95
commit a7840ea4b0
49 changed files with 378 additions and 314 deletions
+16 -26
View File
@@ -44,7 +44,7 @@ impl TryFrom<&PipelineItemView> for PipelineItem {
fn try_from(view: &PipelineItemView) -> Result<Self, ProjectionError> {
let story_id = StoryId(view.story_id().to_string());
let name = view.name().unwrap_or("").to_string();
let name = view.name().to_string();
let depends_on: Vec<StoryId> = view
.depends_on()
@@ -115,12 +115,10 @@ mod tests {
PipelineItemView::for_test(
story_id,
stage,
name.map(str::to_string),
None,
None,
None,
None,
name.unwrap_or("(unnamed)"),
None,
0u32,
vec![],
None,
None,
None,
@@ -140,12 +138,10 @@ mod tests {
let view = PipelineItemView::for_test(
"42_story_test",
Stage::Backlog,
Some("Test Story".to_string()),
None,
None,
Some(vec![10, 20]),
None,
"Test Story",
None,
0u32,
vec![10, 20],
None,
None,
None,
@@ -164,12 +160,10 @@ mod tests {
let view = PipelineItemView::for_test(
"42_story_test",
Stage::Coding,
Some("Test".to_string()),
"Test",
Some("coder-1".to_string()),
Some(2),
None,
None,
None,
2u32,
vec![],
None,
None,
None,
@@ -225,12 +219,10 @@ mod tests {
reason: "migrated from legacy blocked field".to_string(),
},
},
Some("Test".to_string()),
None,
None,
None,
None,
"Test",
None,
0u32,
vec![],
None,
None,
None,
@@ -254,12 +246,10 @@ mod tests {
archived_at: Utc::now(),
reason: ArchiveReason::Completed,
},
Some("Test".to_string()),
None,
None,
None,
None,
"Test",
None,
0u32,
vec![],
None,
None,
None,