2022-10-15 04:57:19 +02:00
|
|
|
package stash
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/jesseduffield/lazygit/pkg/config"
|
|
|
|
. "github.com/jesseduffield/lazygit/pkg/integration/components"
|
|
|
|
)
|
|
|
|
|
|
|
|
var Rename = NewIntegrationTest(NewIntegrationTestArgs{
|
|
|
|
Description: "Try to rename the stash.",
|
|
|
|
ExtraCmdArgs: "",
|
|
|
|
Skip: false,
|
|
|
|
SetupConfig: func(config *config.AppConfig) {},
|
|
|
|
SetupRepo: func(shell *Shell) {
|
|
|
|
shell.
|
|
|
|
EmptyCommit("blah").
|
2022-10-16 09:26:01 +02:00
|
|
|
CreateFileAndAdd("file-1", "change to stash1").
|
|
|
|
StashWithMessage("foo").
|
|
|
|
CreateFileAndAdd("file-2", "change to stash2").
|
2022-10-15 04:57:19 +02:00
|
|
|
StashWithMessage("bar")
|
|
|
|
},
|
|
|
|
Run: func(shell *Shell, input *Input, assert *Assert, keys config.KeybindingConfig) {
|
|
|
|
input.SwitchToStashWindow()
|
|
|
|
|
2022-12-26 02:12:56 +02:00
|
|
|
assert.CurrentView().Name("stash").Lines(
|
2022-12-25 02:38:00 +02:00
|
|
|
Equals("On master: bar"),
|
|
|
|
Equals("On master: foo"),
|
|
|
|
)
|
2022-10-16 09:26:01 +02:00
|
|
|
input.NextItem()
|
2022-12-24 08:48:57 +02:00
|
|
|
input.Press(keys.Stash.RenameStash)
|
2022-10-15 04:57:19 +02:00
|
|
|
|
2022-12-24 08:48:57 +02:00
|
|
|
input.Prompt(Equals("Rename stash: stash@{1}"), " baz")
|
2022-10-15 04:57:19 +02:00
|
|
|
|
2022-12-26 02:12:56 +02:00
|
|
|
assert.CurrentView().SelectedLine(Equals("On master: foo baz"))
|
2022-10-15 04:57:19 +02:00
|
|
|
},
|
|
|
|
})
|