code

package
v1.0.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 9, 2019 License: Apache-2.0 Imports: 10 Imported by: 0

Documentation

Overview

Handles retrieving descriptions of the code and reverting.

Index

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 (m *CodeServiceMock) CommitsOnBranch(branch string, max int) ([]*types.Commit, error)

func (*CodeServiceMock) CommitsOnBranchAfter

func (m *CodeServiceMock) CommitsOnBranchAfter(branch string, sha string) ([]*types.Commit, error)

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

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL