mirror of
https://github.com/grafana/grafana.git
synced 2024-11-28 03:34:15 -06:00
20 lines
330 B
Go
20 lines
330 B
Go
//go:build integration
|
|
// +build integration
|
|
|
|
package sqlstore
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/grafana/grafana/pkg/models"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestIntegration_GetAdminStats(t *testing.T) {
|
|
InitTestDB(t)
|
|
|
|
query := models.GetAdminStatsQuery{}
|
|
err := GetAdminStats(&query)
|
|
require.NoError(t, err)
|
|
}
|