grafana/pkg/services/star/starimpl/xorm_store_test.go

17 lines
303 B
Go
Raw Normal View History

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