mirror of
https://github.com/jesseduffield/lazygit.git
synced 2026-09-10 07:36:27 -04:00
Also verify stage-all can unstage a dirty submodule
Before the staging decision was unified, the stage (space) and stage-all (a) keybindings each made their own decision, so a fix to one wouldn't reach the other. Extend the test to drive the submodule through stage-all as well, guarding against that asymmetry coming back. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
3f0a7512f8
commit
c46c874442
|
|
@ -6,7 +6,7 @@ import (
|
|||
)
|
||||
|
||||
var Stage = NewIntegrationTest(NewIntegrationTestArgs{
|
||||
Description: "Stage and unstage a submodule that has both a new commit and dirty content. The new commit can be staged, but the dirty content can't, so unstaging must still work.",
|
||||
Description: "Stage and unstage a submodule that has both a new commit and dirty content. The new commit can be staged, but the dirty content can't, so unstaging must still work; this must hold for both the stage (space) and stage-all (a) keybindings.",
|
||||
ExtraCmdArgs: []string{},
|
||||
Skip: false,
|
||||
SetupConfig: func(config *config.AppConfig) {
|
||||
|
|
@ -39,6 +39,18 @@ var Stage = NewIntegrationTest(NewIntegrationTestArgs{
|
|||
// Pressing again must unstage the submodule, taking us back to
|
||||
// " M" rather than trying (and failing) to stage the dirty content.
|
||||
PressPrimaryAction().
|
||||
Lines(
|
||||
Equals(" M my_submodule_path (submodule)").IsSelected(),
|
||||
).
|
||||
// The same has to hold for the stage-all keybinding, which shares
|
||||
// the same decision logic: it stages the new commit...
|
||||
Press(keys.Files.ToggleStagedAll).
|
||||
Lines(
|
||||
Equals("MM my_submodule_path (submodule)").IsSelected(),
|
||||
).
|
||||
// ...and then unstages it again rather than getting stuck on the
|
||||
// dirty content.
|
||||
Press(keys.Files.ToggleStagedAll).
|
||||
Lines(
|
||||
Equals(" M my_submodule_path (submodule)").IsSelected(),
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue