diff options
| author | Stefan Majewsky <majewsky@gmx.net> | 2026-07-30 19:57:29 +0200 |
|---|---|---|
| committer | Stefan Majewsky <majewsky@gmx.net> | 2026-07-30 19:57:54 +0200 |
| commit | 81e32cec36291685b59102594c714d235726e214 (patch) | |
| tree | 9d9db69d96dc3cd1dd3ba58d60aefdc84b85e157 /pgruntime/main_test.go | |
| parent | 7ead3465c7fdf564ae367e1169aeb68ced9267c8 (diff) | |
| download | go-gg-81e32cec36291685b59102594c714d235726e214.tar.gz | |
add package pgruntime
Diffstat (limited to 'pgruntime/main_test.go')
| -rw-r--r-- | pgruntime/main_test.go | 14 |
1 files changed, 14 insertions, 0 deletions
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 <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) +} |
