29 lines
496 B
Go
29 lines
496 B
Go
package dialog
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/derailed/k9s/internal/ui"
|
|
"github.com/derailed/tview"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestDeleteDialog(t *testing.T) {
|
|
p := ui.NewPages()
|
|
|
|
okFunc := func(c, f bool) {
|
|
assert.True(t, c)
|
|
assert.True(t, f)
|
|
}
|
|
caFunc := func() {
|
|
assert.True(t, true)
|
|
}
|
|
ShowDelete(p, "Yo", okFunc, caFunc)
|
|
|
|
d := p.GetPrimitive(deleteKey).(*tview.ModalForm)
|
|
assert.NotNil(t, d)
|
|
|
|
dismissDelete(p)
|
|
assert.Nil(t, p.GetPrimitive(deleteKey))
|
|
}
|