register mocks for the new request

This commit is contained in:
Francisco Miamoto 2020-07-30 22:13:48 -03:00
parent 3ce1de62a2
commit 75e8cb8f9c
2 changed files with 12 additions and 1 deletions

View file

@ -54,6 +54,14 @@ func Test_RepoMetadata(t *testing.T) {
"pageInfo": { "hasNextPage": false }
} } } }
`))
http.Register(
httpmock.REST("GET", "repos/OWNER/REPO/milestones"),
httpmock.StringResponse(`
[
{ "title": "GA", "id": 1 },
{ "title": "Big One.oh", "id": 2 }
]
`))
http.Register(
httpmock.GraphQL(`query RepositoryProjectList\b`),
httpmock.StringResponse(`

View file

@ -170,10 +170,13 @@ func TestIssueList_tty_withFlags(t *testing.T) {
assert.Equal(t, "probablyCher", params["assignee"].(string))
assert.Equal(t, "foo", params["author"].(string))
assert.Equal(t, "me", params["mention"].(string))
assert.Equal(t, "1.x", params["milestone"].(string))
assert.Equal(t, []interface{}{"web", "bug"}, params["labels"].([]interface{}))
assert.Equal(t, []interface{}{"OPEN"}, params["states"].([]interface{}))
}))
http.Register(
httpmock.REST("GET", "repos/OWNER/REPO/milestones"),
httpmock.StringResponse("[]"),
)
output, err := RunCommand("issue list -a probablyCher -l web,bug -s open -A foo --mention me --milestone 1.x")
if err != nil {