packer-cn/packer/post_processor_test.go

23 lines
440 B
Go
Raw Normal View History

package packer
2013-06-18 13:31:52 -04:00
type TestPostProcessor struct {
configCalled bool
configVal interface{}
ppCalled bool
ppArtifact Artifact
2013-06-19 00:54:33 -04:00
ppUi Ui
2013-06-18 13:31:52 -04:00
}
2013-06-18 13:31:52 -04:00
func (pp *TestPostProcessor) Configure(v interface{}) error {
pp.configCalled = true
pp.configVal = v
return nil
}
func (pp *TestPostProcessor) PostProcess(ui Ui, a Artifact) (Artifact, error) {
2013-06-18 13:31:52 -04:00
pp.ppCalled = true
pp.ppArtifact = a
pp.ppUi = ui
return new(TestArtifact), nil
}