From 81e32cec36291685b59102594c714d235726e214 Mon Sep 17 00:00:00 2001 From: Stefan Majewsky Date: Thu, 30 Jul 2026 19:57:29 +0200 Subject: add package pgruntime --- pgruntime/main_test.go | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 pgruntime/main_test.go (limited to 'pgruntime/main_test.go') diff --git a/pgruntime/main_test.go b/pgruntime/main_test.go new file mode 100644 index 0000000..db6b0ac --- /dev/null +++ b/pgruntime/main_test.go @@ -0,0 +1,14 @@ +// SPDX-FileCopyrightText: 2026 Stefan Majewsky +// 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) +} -- cgit v1.3.1