1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-08-07 22:02:56 +03:00

Make commit prefixes migration only return true if it enters if statement

This commit is contained in:
Chris McDonnell
2025-02-22 20:35:08 -05:00
committed by Stefan Haller
parent 38ab7ebefb
commit 72b9e8328d
2 changed files with 25 additions and 3 deletions

View File

@@ -52,6 +52,28 @@ func TestCommitPrefixMigrations(t *testing.T) {
name: "Incomplete Configuration",
input: "git:",
expected: "git:",
}, {
// This test intentionally uses non-standard indentation to test that the migration
// does not change the input.
name: "No changes made when already migrated",
input: `
git:
commitPrefix:
- pattern: "Hello World"
replace: "Goodbye"
commitPrefixes:
foo:
- pattern: "^\\w+-\\w+.*"
replace: '[JIRA $0] '`,
expected: `
git:
commitPrefix:
- pattern: "Hello World"
replace: "Goodbye"
commitPrefixes:
foo:
- pattern: "^\\w+-\\w+.*"
replace: '[JIRA $0] '`,
},
}