23 lines
478 B
Go
23 lines
478 B
Go
package ui_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/derailed/k9s/internal/model"
|
|
"github.com/derailed/k9s/internal/ui"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestKeyActionsHints(t *testing.T) {
|
|
kk := ui.KeyActions{
|
|
ui.KeyF: ui.NewKeyAction("fred", nil, true),
|
|
ui.KeyB: ui.NewKeyAction("blee", nil, true),
|
|
ui.KeyZ: ui.NewKeyAction("zorg", nil, false),
|
|
}
|
|
|
|
hh := kk.Hints()
|
|
|
|
assert.Equal(t, 3, len(hh))
|
|
assert.Equal(t, model.MenuHint{"b", "blee", true}, hh[0])
|
|
}
|