woodpecker-helm3/internal/helm/config_test.go

15 lines
199 B
Go
Raw Normal View History

2019-12-09 17:56:02 +00:00
package helm
import (
"github.com/stretchr/testify/suite"
"testing"
)
type ConfigTestSuite struct {
suite.Suite
}
func TestConfigTestSuite(t *testing.T) {
suite.Run(t, new(ConfigTestSuite))
}