mirror of
https://github.com/hashicorp/packer.git
synced 2026-05-28 04:35:38 -04:00
23 lines
394 B
Go
23 lines
394 B
Go
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)
|
|
}
|