mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 19:00:54 -06:00
19 lines
329 B
Go
19 lines
329 B
Go
package sqlstore
|
|
|
|
import (
|
|
"testing"
|
|
|
|
// m "github.com/grafana/grafana/pkg/models"
|
|
. "github.com/smartystreets/goconvey/convey"
|
|
)
|
|
|
|
func TestAlertingHeartbeatDataAccess(t *testing.T) {
|
|
|
|
Convey("Testing Alerting data access", t, func() {
|
|
InitTestDB(t)
|
|
//send heartbeat from server 1
|
|
//send heartbeat from server 2
|
|
|
|
})
|
|
}
|