mirror of
https://github.com/MeshTender/MeshTender.git
synced 2026-09-16 08:32:37 +00:00
15 lines
288 B
Go
15 lines
288 B
Go
package store
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/jleight/meshtender/internal/testdb"
|
|
)
|
|
|
|
// TestMain gives the package's DB-backed tests process-level setup/teardown of
|
|
// the testdb template and (when used) its container.
|
|
func TestMain(m *testing.M) {
|
|
os.Exit(testdb.RunMain(m))
|
|
}
|