huskies: merge 1015

This commit is contained in:
dave
2026-05-13 23:39:17 +00:00
parent 69b207872a
commit 5ed1438ab9
22 changed files with 227 additions and 73 deletions
+4 -4
View File
@@ -561,7 +561,7 @@ mod tests {
session_id_to_resume: None,
fresh_prompt: None,
project_root: std::path::PathBuf::from("/tmp/project"),
model: String::new(),
model: None,
};
assert_eq!(build_system_text(&ctx), "Custom system prompt");
@@ -581,7 +581,7 @@ mod tests {
session_id_to_resume: None,
fresh_prompt: None,
project_root: std::path::PathBuf::from("/tmp/project"),
model: String::new(),
model: None,
};
let text = build_system_text(&ctx);
@@ -634,7 +634,7 @@ mod tests {
session_id_to_resume: None,
fresh_prompt: None,
project_root: std::path::PathBuf::from("/tmp/project"),
model: String::new(),
model: None,
};
assert!(ctx.command.starts_with("gpt"));
}
@@ -653,7 +653,7 @@ mod tests {
session_id_to_resume: None,
fresh_prompt: None,
project_root: std::path::PathBuf::from("/tmp/project"),
model: String::new(),
model: None,
};
assert!(ctx.command.starts_with("o"));
}