* Replace check for integration tests. * Revert changes in pkg/tsdb/mysql packages. * Fix formatting of few tests.
17 lines
337 B
Go
17 lines
337 B
Go
package prefimpl
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/grafana/grafana/pkg/infra/db"
|
|
"github.com/grafana/grafana/pkg/util/testutil"
|
|
)
|
|
|
|
func TestIntegrationXORMPreferencesDataAccess(t *testing.T) {
|
|
testutil.SkipIntegrationTestInShortMode(t)
|
|
|
|
testIntegrationPreferencesDataAccess(t, func(ss db.DB) store {
|
|
return &sqlStore{db: ss}
|
|
})
|
|
}
|