1
0
mirror of https://github.com/interviewstreet/go-jira.git synced 2025-08-06 22:13:02 +02:00

feat: Add ResolutionService to retrieve resolutions

This commit is contained in:
Thibaut Rousseau
2018-06-25 17:48:53 +02:00
parent 98a84a4c00
commit fb1ce22699
6 changed files with 212 additions and 9 deletions

View File

@ -118,6 +118,9 @@ func TestNewClient_WithServices(t *testing.T) {
if c.Priority == nil {
t.Error("No PriorityService provided")
}
if c.Resolution == nil {
t.Error("No ResolutionService provided")
}
}
func TestCheckResponse(t *testing.T) {