Files
kustomize/kyaml/fn/framework/example/main_test.go
2021-05-18 12:07:42 -07:00

18 lines
301 B
Go

// Copyright 2021 The Kubernetes Authors.
// SPDX-License-Identifier: Apache-2.0
package main
import (
"testing"
"sigs.k8s.io/kustomize/kyaml/fn/framework/frameworktestutil"
)
func TestRun(t *testing.T) {
prc := frameworktestutil.CommandResultsChecker{
Command: buildCmd,
}
prc.Assert(t)
}