alert_heartbeat_test.go 329 B

123456789101112131415161718
  1. package sqlstore
  2. import (
  3. "testing"
  4. // m "github.com/grafana/grafana/pkg/models"
  5. . "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestAlertingHeartbeatDataAccess(t *testing.T) {
  8. Convey("Testing Alerting data access", t, func() {
  9. InitTestDB(t)
  10. //send heartbeat from server 1
  11. //send heartbeat from server 2
  12. })
  13. }