packer-cn/builder/googlecompute/step_test.go

22 lines
446 B
Go

package googlecompute
import (
"bytes"
"testing"
"github.com/hashicorp/packer/packer"
"github.com/mitchellh/multistep"
)
func testState(t *testing.T) multistep.StateBag {
state := new(multistep.BasicStateBag)
state.Put("config", testConfigStruct(t))
state.Put("driver", &DriverMock{})
state.Put("hook", &packer.MockHook{})
state.Put("ui", &packer.BasicUi{
Reader: new(bytes.Buffer),
Writer: new(bytes.Buffer),
})
return state
}