package prefimpl import ( "testing" "github.com/grafana/grafana/pkg/infra/db" ) func TestIntegrationSQLxPreferencesDataAccess(t *testing.T) { if testing.Short() { t.Skip("skipping integration test") } testIntegrationPreferencesDataAccess(t, func(ss db.DB) store { return &sqlxStore{sess: ss.GetSqlxSession()} }) }