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