mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-05-17 18:25:26 +00:00
18 lines
301 B
Go
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)
|
|
}
|