You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
packer/packer_test/core_tests/suite_test.go

24 lines
365 B

package core_test
import (
"testing"
"github.com/hashicorp/packer/packer_test/common"
"github.com/stretchr/testify/suite"
)
type PackerCoreTestSuite struct {
*common.PackerTestSuite
}
func Test_PackerCoreSuite(t *testing.T) {
baseSuite, cleanup := common.InitBaseSuite(t)
defer cleanup()
ts := &PackerCoreTestSuite{
baseSuite,
}
suite.Run(t, ts)
}