builtEvent creates a new built (done) Resource
(id string)
| 84 | |
| 85 | // builtEvent creates a new built (done) Resource |
| 86 | func builtEvent(id string) api.Resource { |
| 87 | return newEvent("Image "+id, api.Done, api.StatusBuilt) |
| 88 | } |
| 89 | |
| 90 | // waiting creates a new waiting event; kept as a named func for use as a function value. |
| 91 | func waiting(id string) api.Resource { |
no test coverage detected