mirror of https://git.rancher.io/charts
16 lines
280 B
Go
16 lines
280 B
Go
|
package rancher_cis_benchmark
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/rancher/hull/pkg/test"
|
||
|
)
|
||
|
|
||
|
func TestChart(t *testing.T) {
|
||
|
opts := test.GetRancherOptions()
|
||
|
opts.Coverage.IncludeSubcharts = true
|
||
|
opts.Coverage.Disabled = false
|
||
|
opts.YAMLLint.Enabled = false
|
||
|
suite.Run(t, opts)
|
||
|
}
|