Documentation
¶
Overview ¶
Handles retrieving descriptions of the code and reverting.
Index ¶
- type CodeServiceMock
- func (m *CodeServiceMock) CommitsOnBranch(branch string, max int) ([]*types.Commit, error)
- func (m *CodeServiceMock) CommitsOnBranchAfter(branch string, sha string) ([]*types.Commit, error)
- func (m *CodeServiceMock) CompareRefs(oldRef, newRef string) ([]*types.Commit, error)
- func (m *CodeServiceMock) ParseWebhookForBranch(r *http.Request) (string, error)
- func (m *CodeServiceMock) Revert(sha1, branch string) error
- type Service
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CodeServiceMock ¶
type CodeServiceMock struct {
CommitsOnBranchMock func(string, int) ([]*types.Commit, error)
CommitsOnBranchAfterMock func(string, string) ([]*types.Commit, error)
CompareRefsMock func(string, string) ([]*types.Commit, error)
RevertMock func(sha1, branch string) error
ParseWebhookForBranchMock func(r *http.Request) (string, error)
}
func (*CodeServiceMock) CommitsOnBranch ¶
func (*CodeServiceMock) CommitsOnBranchAfter ¶
func (*CodeServiceMock) CompareRefs ¶
func (m *CodeServiceMock) CompareRefs(oldRef, newRef string) ([]*types.Commit, error)
func (*CodeServiceMock) ParseWebhookForBranch ¶
func (m *CodeServiceMock) ParseWebhookForBranch(r *http.Request) (string, error)
func (*CodeServiceMock) Revert ¶
func (m *CodeServiceMock) Revert(sha1, branch string) error
type Service ¶
type Service interface {
CommitsOnBranch(string, int) ([]*types.Commit, error)
CommitsOnBranchAfter(string, string) ([]*types.Commit, error)
CompareRefs(string, string) ([]*types.Commit, error)
Revert(sha1, branch string) error
ParseWebhookForBranch(r *http.Request) (string, error)
}
func GetService ¶
func GetService() Service
Click to show internal directories.
Click to hide internal directories.