1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-06 16:06:56 +00:00
kyverno/pkg/cel/env_test.go
Charles-Edouard Brétéché 7313c7c11b
chore: add CEL unit tests (#12230)
Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
2025-02-24 12:12:51 +00:00

13 lines
178 B
Go

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)
}