mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* migrate from xorm to sqlx * fix tests * fix comments * fix some comments on the PR * fix CI * fix the comments
14 lines
271 B
Go
14 lines
271 B
Go
package apikeyimpl
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/grafana/grafana/pkg/services/sqlstore"
|
|
)
|
|
|
|
func TestIntegrationXORMApiKeyDataAccess(t *testing.T) {
|
|
testIntegrationApiKeyDataAccess(t, func(ss *sqlstore.SQLStore) store {
|
|
return &sqlStore{db: ss, cfg: ss.Cfg}
|
|
})
|
|
}
|