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

feat: Add StatusCategory GetList

This commit is contained in:
Thibaut Rousseau
2018-06-26 09:41:46 +02:00
parent 6223ddd833
commit 049a756bbe
5 changed files with 92 additions and 0 deletions

View File

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