diff --git a/core/event_test.go b/core/event_test.go new file mode 100644 index 00000000..2269178a --- /dev/null +++ b/core/event_test.go @@ -0,0 +1,12 @@ +package core + +import "testing" + +func TestNewEventFromResult(t *testing.T) { + if event := NewEventFromResult(&Result{Success: true}); event.Type != EventHealthy { + t.Error("expected event.Type to be EventHealthy") + } + if event := NewEventFromResult(&Result{Success: false}); event.Type != EventUnhealthy { + t.Error("expected event.Type to be EventUnhealthy") + } +}