| 24 | ) |
| 25 | |
| 26 | type stubGithubClient struct { |
| 27 | err error |
| 28 | } |
| 29 | |
| 30 | func (s *stubGithubClient) ListEntityHooks(_ context.Context, _ *github.ListOptions) ([]*github.Hook, *github.Response, error) { |
| 31 | return nil, nil, s.err |
nothing calls this directly
no outgoing calls
no test coverage detected