(options *whisk.TriggerListOptions)
| 31 | } |
| 32 | |
| 33 | func (t MockedTriggerService) List(options *whisk.TriggerListOptions) ([]whisk.Trigger, *http.Response, error) { |
| 34 | return []whisk.Trigger{}, &http.Response{}, nil |
| 35 | } |
| 36 | func (t MockedTriggerService) Insert(trigger *whisk.Trigger, overwrite bool) (*whisk.Trigger, *http.Response, error) { |
| 37 | Triggers[trigger.Name] = trigger |
| 38 | return trigger, &http.Response{}, nil |
no outgoing calls
no test coverage detected