grafana/pkg/services/apikey/apikeyimpl/sqlx_store_test.go
ying-jeanne ebcdf402b2
Chore: move from xorm to sqlx apikey store (#53434)
* migrate from xorm to sqlx

* fix tests

* fix comments

* fix some comments on the PR

* fix CI

* fix the comments
2022-08-23 11:01:35 -04:00

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}
})
}