1
0
mirror of https://github.com/interviewstreet/go-jira.git synced 2024-11-28 08:39:03 +02:00

Renamed "json_mocks" into "mocks"

This commit is contained in:
Andy Grunwald 2016-06-03 23:16:21 +02:00
parent 883aca79c0
commit 7c3e481c65
4 changed files with 3 additions and 6 deletions

View File

@ -66,14 +66,12 @@ type ProjectComponent struct {
ProjectID int `json:"projectId"`
}
// Get all projects form jira
// GetList gets all projects form JIRA
//
// JIRA API docs: https://docs.atlassian.com/jira/REST/latest/#api/2/project-getAllProjects
func (s *ProjectService) GetList() (*ProjectList, *http.Response, error) {
apiEndpoint := "rest/api/2/project"
req, err := s.client.NewRequest("GET", apiEndpoint, nil)
if err != nil {
return nil, nil, err
}
@ -94,7 +92,6 @@ func (s *ProjectService) GetList() (*ProjectList, *http.Response, error) {
func (s *ProjectService) Get(projectID string) (*FullProject, *http.Response, error) {
apiEndpoint := fmt.Sprintf("/rest/api/2/project/%s", projectID)
req, err := s.client.NewRequest("GET", apiEndpoint, nil)
if err != nil {
return nil, nil, err
}

View File

@ -12,7 +12,7 @@ func TestProjectGetAll(t *testing.T) {
defer teardown()
testApiEdpoint := "/rest/api/2/project"
raw, err := ioutil.ReadFile("./json_mocks/all_projects.json")
raw, err := ioutil.ReadFile("./mocks/all_projects.json")
if err != nil {
t.Error(err.Error())
}
@ -36,7 +36,7 @@ func TestProjectGet(t *testing.T) {
defer teardown()
testApiEdpoint := "/rest/api/2/project/12310505"
raw, err := ioutil.ReadFile("./json_mocks/project.json")
raw, err := ioutil.ReadFile("./mocks/project.json")
if err != nil {
t.Error(err.Error())
}