packer-cn/packer/hook_test.go

10 lines
126 B
Go
Raw Normal View History

package packer
type TestHook struct {
runCalled bool
}
func (t *TestHook) Run(string, interface{}) {
t.runCalled = true
}