1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-13 01:30:53 +02:00

add view asserter getter struct

This commit is contained in:
Jesse Duffield
2022-12-27 15:07:11 +11:00
parent b64f55518b
commit be30cbb375
35 changed files with 184 additions and 174 deletions

View File

@ -16,7 +16,7 @@ var One = NewIntegrationTest(NewIntegrationTestArgs{
},
Run: func(shell *Shell, input *Input, assert *Assert, keys config.KeybindingConfig) {
input.SwitchToCommitsView()
assert.CurrentView().Lines(
assert.Views().Current().Lines(
Contains("commit 05"),
Contains("commit 04"),
Contains("commit 03"),
@ -27,7 +27,7 @@ var One = NewIntegrationTest(NewIntegrationTestArgs{
input.NavigateToListItem(Contains("commit 02"))
input.Press(keys.Universal.Edit)
assert.CurrentView().Lines(
assert.Views().Current().Lines(
MatchesRegexp("pick.*commit 05"),
MatchesRegexp("pick.*commit 04"),
MatchesRegexp("pick.*commit 03"),
@ -37,7 +37,7 @@ var One = NewIntegrationTest(NewIntegrationTestArgs{
input.PreviousItem()
input.Press(keys.Commits.MarkCommitAsFixup)
assert.CurrentView().Lines(
assert.Views().Current().Lines(
MatchesRegexp("pick.*commit 05"),
MatchesRegexp("pick.*commit 04"),
MatchesRegexp("fixup.*commit 03"),
@ -47,7 +47,7 @@ var One = NewIntegrationTest(NewIntegrationTestArgs{
input.PreviousItem()
input.Press(keys.Universal.Remove)
assert.CurrentView().Lines(
assert.Views().Current().Lines(
MatchesRegexp("pick.*commit 05"),
MatchesRegexp("drop.*commit 04"),
MatchesRegexp("fixup.*commit 03"),
@ -58,7 +58,7 @@ var One = NewIntegrationTest(NewIntegrationTestArgs{
input.PreviousItem()
input.Press(keys.Commits.SquashDown)
assert.CurrentView().Lines(
assert.Views().Current().Lines(
MatchesRegexp("squash.*commit 05"),
MatchesRegexp("drop.*commit 04"),
MatchesRegexp("fixup.*commit 03"),
@ -68,7 +68,7 @@ var One = NewIntegrationTest(NewIntegrationTestArgs{
input.ContinueRebase()
assert.CurrentView().Lines(
assert.Views().Current().Lines(
Contains("commit 02"),
Contains("commit 01"),
)