mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
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}
|
||
|
})
|
||
|
}
|