1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-07 00:17:13 +00:00
kyverno/pkg/cel/env_test.go

14 lines
178 B
Go
Raw Normal View History

package cel
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestNewEnv(t *testing.T) {
got, err := NewEnv()
assert.NoError(t, err)
assert.NotNil(t, got)
}