mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-12-12 11:15:00 +02:00
36 lines
985 B
Go
36 lines
985 B
Go
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").
|
|
CreateFileAndAdd("file-1", "change to stash1").
|
|
StashWithMessage("foo").
|
|
CreateFileAndAdd("file-2", "change to stash2").
|
|
StashWithMessage("bar")
|
|
},
|
|
Run: func(shell *Shell, input *Input, assert *Assert, keys config.KeybindingConfig) {
|
|
input.SwitchToStashView()
|
|
|
|
assert.Views().Current().Lines(
|
|
Equals("On master: bar"),
|
|
Equals("On master: foo"),
|
|
)
|
|
input.NextItem()
|
|
input.Press(keys.Stash.RenameStash)
|
|
|
|
input.Prompt().Title(Equals("Rename stash: stash@{1}")).Type(" baz").Confirm()
|
|
|
|
assert.Views().Current().SelectedLine(Equals("On master: foo baz"))
|
|
},
|
|
})
|