Merge pull request #8309 from alrs/prune-vmware-builder-dead-code

builder/vmware: Remove Unused Test Helper Functions
This commit is contained in:
Adrien Delorme 2019-11-04 11:12:55 +01:00 committed by GitHub
commit ff639ea2c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 31 deletions

View File

@ -7,17 +7,6 @@ import (
"github.com/hashicorp/packer/template/interpolate"
)
func testHWConfig() *HWConfig {
return &HWConfig{
CpuCount: 1,
CoreCount: 1,
MemorySize: 512,
Sound: true,
USB: true,
}
}
func TestHWConfigPrepare(t *testing.T) {
c := new(HWConfig)

View File

@ -1,20 +0,0 @@
package iso
import (
"bytes"
"testing"
vmwcommon "github.com/hashicorp/packer/builder/vmware/common"
"github.com/hashicorp/packer/helper/multistep"
"github.com/hashicorp/packer/packer"
)
func testState(t *testing.T) multistep.StateBag {
state := new(multistep.BasicStateBag)
state.Put("driver", new(vmwcommon.DriverMock))
state.Put("ui", &packer.BasicUi{
Reader: new(bytes.Buffer),
Writer: new(bytes.Buffer),
})
return state
}