mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
* Chore: remove xorm from preference * separte feature toggle * fix comments * fix comments * remove the dublicated namedexec
14 lines
286 B
Go
14 lines
286 B
Go
package prefimpl
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/grafana/grafana/pkg/services/sqlstore"
|
|
)
|
|
|
|
func TestIntegrationSQLxPreferencesDataAccess(t *testing.T) {
|
|
testIntegrationPreferencesDataAccess(t, func(ss *sqlstore.SQLStore) store {
|
|
return &sqlxStore{sess: ss.GetSqlxSession()}
|
|
})
|
|
}
|