mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 01:53:33 -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}
|
||
|
})
|
||
|
}
|