aboutsummaryrefslogtreecommitdiff
path: root/pgruntime/main_test.go
blob: db6b0ac5483936084bbda1efac4d3e9b784f97e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-FileCopyrightText: 2026 Stefan Majewsky <majewsky@gmx.net>
// SPDX-License-Identifier: Apache-2.0

package pgruntime_test

import (
	"testing"

	"go.xyrillian.de/gg/pgruntime"
)

func TestMain(m *testing.M) {
	pgruntime.WithTestDB(m, m.Run)
}