packer-cn/packer/hook_test.go

10 lines
130 B
Go
Raw Normal View History

package packer
type TestHook struct {
runCalled bool
}
2013-05-11 12:51:49 -04:00
func (t *TestHook) Run(string, interface{}, Ui) {
t.runCalled = true
}