minor README tweaks + rust progress

This commit is contained in:
kuberwastaken 2026-04-01 03:31:03 +05:30
parent c99507ca1e
commit 45f7ac9071
9 changed files with 628 additions and 25 deletions

View file

@ -549,8 +549,9 @@ mod tests {
fn expand_prompt_suffix_empty() {
let skill = find_bundled_skill("stuck").unwrap();
let expanded = expand_prompt(skill, "");
// $ARGUMENTS_SUFFIX should be "" (not ": ")
assert!(!expanded.contains(": "));
// $ARGUMENTS_SUFFIX should expand to "" so "stuck" is not followed by ": "
assert!(!expanded.contains("stuck: "));
assert!(!expanded.contains("$ARGUMENTS_SUFFIX"));
}
#[test]