ef4db923cd
I'm leaving the no-op test file in place because my next step is to add new behavior that will require testing.
15 lines
199 B
Go
15 lines
199 B
Go
package helm
|
|
|
|
import (
|
|
"github.com/stretchr/testify/suite"
|
|
"testing"
|
|
)
|
|
|
|
type ConfigTestSuite struct {
|
|
suite.Suite
|
|
}
|
|
|
|
func TestConfigTestSuite(t *testing.T) {
|
|
suite.Run(t, new(ConfigTestSuite))
|
|
}
|