mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 01:53:33 -06:00
* migrate from xorm to sqlx * fix tests * fix comments * fix some comments on the PR * fix CI * fix the comments
14 lines
291 B
Go
14 lines
291 B
Go
package apikeyimpl
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/grafana/grafana/pkg/services/sqlstore"
|
|
)
|
|
|
|
func TestIntegrationSQLxApiKeyDataAccess(t *testing.T) {
|
|
testIntegrationApiKeyDataAccess(t, func(ss *sqlstore.SQLStore) store {
|
|
return &sqlxStore{sess: ss.GetSqlxSession(), cfg: ss.Cfg}
|
|
})
|
|
}
|