Add desktop search and entry mutation workflows

This commit is contained in:
2026-08-10 19:19:46 +02:00
parent bb650c2b5c
commit de5dea28ef
8 changed files with 1292 additions and 30 deletions

View File

@@ -166,6 +166,13 @@ mod tests {
matches("generate").first(),
Some(&UiAction::GeneratePassword)
);
assert_eq!(matches("grep").first(), Some(&UiAction::SearchContents));
assert_eq!(matches("rename").first(), Some(&UiAction::MoveEntry));
assert_eq!(
matches("duplicate entry").first(),
Some(&UiAction::CopyEntry)
);
assert_eq!(matches("rm").first(), Some(&UiAction::DeleteEntry));
assert_eq!(
matches(""),
action::ACTIONS