mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-01-06 03:53:59 +02:00
Merge branch 'hotfix/cursor-positioning' into feature/recent-repos
This commit is contained in:
commit
4ea446205c
@ -346,3 +346,33 @@ func TestGetPadWidths(t *testing.T) {
|
|||||||
assert.EqualValues(t, s.expected, getPadWidths(s.stringArrays))
|
assert.EqualValues(t, s.expected, getPadWidths(s.stringArrays))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestMin(t *testing.T) {
|
||||||
|
type scenario struct {
|
||||||
|
a int
|
||||||
|
b int
|
||||||
|
expected int
|
||||||
|
}
|
||||||
|
|
||||||
|
scenarios := []scenario{
|
||||||
|
{
|
||||||
|
1,
|
||||||
|
1,
|
||||||
|
1,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
1,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
2,
|
||||||
|
1,
|
||||||
|
1,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, s := range scenarios {
|
||||||
|
assert.EqualValues(t, s.expected, Min(s.a, s.b))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user