mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 08:35:43 -06:00
16 lines
293 B
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(),
|
|
}
|
|
})
|
|
}
|