Welcome to mirror list, hosted at ThFree Co, Russian Federation.

generation_postgres_test.go « datastore « praefect « internal - gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9dcba5e2792c378c108b76d4f613d135a9873c8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// +build postgres

package datastore

import (
	"testing"
)

func TestGenerationStore_Postgres(t *testing.T) {
	testGenerationStore(t, func(t *testing.T, storages map[string][]string) GenerationStore {
		return NewPostgresGenerationStore(getDB(t), storages)
	})
}