Skip to content

Commit

Permalink
Add test for health check api
Browse files Browse the repository at this point in the history
Signed-off-by: Masudur Rahman <masud@appscode.com>
  • Loading branch information
masudur-rahman committed Feb 25, 2020
1 parent bf73048 commit 7f54780
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions rest-healthchek_integration_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package sdk_test

import (
"testing"
)

func TestClient_CheckHealth(t *testing.T) {
shouldSkip(t)
client := getClient()

err := client.CheckHealth()
if err != nil {
t.Fatal(err)
}
}

0 comments on commit 7f54780

Please sign in to comment.