mirror of
https://github.com/grafana/grafana.git
synced 2025-02-14 17:43:35 -06:00
14 lines
262 B
Go
14 lines
262 B
Go
package starimpl
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/grafana/grafana/pkg/services/sqlstore"
|
|
)
|
|
|
|
func TestIntegrationXormUserStarsDataAccess(t *testing.T) {
|
|
testIntegrationUserStarsDataAccess(t, func(ss *sqlstore.SQLStore) store {
|
|
return &sqlStore{db: ss}
|
|
})
|
|
}
|