packer-cn/builder/docker/step_test.go

22 lines
498 B
Go
Raw Normal View History

2013-11-09 14:58:20 -05:00
package docker
import (
"bytes"
"testing"
2020-11-17 19:31:03 -05:00
"github.com/hashicorp/packer/packer-plugin-sdk/multistep"
packersdk "github.com/hashicorp/packer/packer-plugin-sdk/packer"
2013-11-09 14:58:20 -05:00
)
func testState(t *testing.T) multistep.StateBag {
state := new(multistep.BasicStateBag)
state.Put("config", testConfigStruct(t))
state.Put("driver", &MockDriver{})
state.Put("hook", &packersdk.MockHook{})
state.Put("ui", &packersdk.BasicUi{
2013-11-09 14:58:20 -05:00
Reader: new(bytes.Buffer),
Writer: new(bytes.Buffer),
})
return state
}