mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
* clean up and document integration test convention * clarify integration test conventions * clean up integration tests that don't follow convention * mark testIntegration* functions as helpers to avoid confusion
17 lines
327 B
Go
17 lines
327 B
Go
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()}
|
|
})
|
|
}
|