Skip to content

Commit

Permalink
Comment command healthcheck out for now as it's not baked
Browse files Browse the repository at this point in the history
  • Loading branch information
bobtfish committed Feb 1, 2016
1 parent 6c4512e commit 15eeafb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion healthcheck/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
)

func init() {
RegisterHealthcheck("command", CommandConstructor)
// RegisterHealthcheck("command", CommandConstructor)
}

type CommandHealthCheck struct {
Expand Down
3 changes: 2 additions & 1 deletion healthcheck/command_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package healthcheck

/*
import (
"github.com/stretchr/testify/assert"
"testing"
Expand All @@ -15,7 +16,6 @@ func TestHealthcheckCommand(t *testing.T) {
h.Setup()
assert.Equal(t, h.healthchecker.Healthcheck(), true)
}

func TestHealthcheckCommandFail(t *testing.T) {
h := Healthcheck{
Type: "command",
Expand All @@ -26,3 +26,4 @@ func TestHealthcheckCommandFail(t *testing.T) {
h.Setup()
assert.Equal(t, h.healthchecker.Healthcheck(), false)
}
*/

0 comments on commit 15eeafb

Please sign in to comment.