21 lines
429 B
Go
21 lines
429 B
Go
// SPDX-License-Identifier: Apache-2.0
|
|
// Copyright Authors of K9s
|
|
|
|
package view_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/derailed/k9s/internal/client"
|
|
"github.com/derailed/k9s/internal/view"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestSecretNew(t *testing.T) {
|
|
s := view.NewSecret(client.NewGVR("v1/secrets"))
|
|
|
|
assert.Nil(t, s.Init(makeCtx()))
|
|
assert.Equal(t, "Secrets", s.Name())
|
|
assert.Equal(t, 8, len(s.Hints()))
|
|
}
|