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

17 lines
299 B
Go
Raw Normal View History

package apikeyimpl
import (
"testing"
"github.com/grafana/grafana/pkg/infra/db"
)
func TestIntegrationXORMApiKeyDataAccess(t *testing.T) {
if testing.Short() {
t.Skip("skipping integration test")
}
testIntegrationApiKeyDataAccess(t, func(ss db.DB) store {
return &sqlStore{db: ss}
})
}