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

Added basic version of Group API (Thanks to @aviz)

This commit is contained in:
Andy Grunwald
2017-01-29 17:28:04 +01:00
parent fddc90f9f2
commit 8a4b1aca33
4 changed files with 62 additions and 1 deletions

View File

@@ -106,6 +106,12 @@ func TestNewClient_WithServices(t *testing.T) {
if c.Sprint == nil {
t.Error("No SprintService provided")
}
if c.User == nil {
t.Error("No UserService provided")
}
if c.Group == nil {
t.Error("No GroupService provided")
}
}
func TestCheckResponse(t *testing.T) {