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/provisioner_tests/shell/suite_test.go

24 lines
394 B

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