grafana/pkg/services/dashboardversion/dashverimpl/sqlx_store_test.go

16 lines
293 B
Go

package dashverimpl
import (
"testing"
"github.com/grafana/grafana/pkg/services/sqlstore"
)
func TestIntegrationSQLxGetDashboardVersion(t *testing.T) {
testIntegrationGetDashboardVersion(t, func(ss *sqlstore.SQLStore) store {
return &sqlxStore{
sess: ss.GetSqlxSession(),
}
})
}