grafana/pkg/services/apikey/apikeyimpl/xorm_store_test.go

14 lines
271 B
Go
Raw Normal View History

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