...

Source file src/sigs.k8s.io/kustomize/kyaml/fn/framework/example/main_test.go

Documentation: sigs.k8s.io/kustomize/kyaml/fn/framework/example

     1  // Copyright 2021 The Kubernetes Authors.
     2  // SPDX-License-Identifier: Apache-2.0
     3  
     4  package main
     5  
     6  import (
     7  	"testing"
     8  
     9  	"sigs.k8s.io/kustomize/kyaml/fn/framework/frameworktestutil"
    10  )
    11  
    12  func TestRun(t *testing.T) {
    13  	prc := frameworktestutil.CommandResultsChecker{
    14  		Command: buildCmd,
    15  	}
    16  	prc.Assert(t)
    17  }
    18  

View as plain text