20 lines
444 B
Go
20 lines
444 B
Go
package pvm
|
|
|
|
import (
|
|
"bytes"
|
|
"github.com/mitchellh/multistep"
|
|
parallelscommon "github.com/mitchellh/packer/builder/parallels/common"
|
|
"github.com/mitchellh/packer/packer"
|
|
"testing"
|
|
)
|
|
|
|
func testState(t *testing.T) multistep.StateBag {
|
|
state := new(multistep.BasicStateBag)
|
|
state.Put("driver", new(parallelscommon.DriverMock))
|
|
state.Put("ui", &packer.BasicUi{
|
|
Reader: new(bytes.Buffer),
|
|
Writer: new(bytes.Buffer),
|
|
})
|
|
return state
|
|
}
|