//go:build test package twofa import ( "os" "testing" "crussell/db" "crussell/testutils/testdb" ) func TestMain(m *testing.M) { pool := testdb.CreateTestDatabase("crussell_test_internal_twofa") db.Conn = db.NewPoolProxy(pool) testdb.SeedBaseline(pool) code := m.Run() testdb.DestroyTestDatabase(pool, "crussell_test_internal_twofa") os.Exit(code) }