mirror of
https://github.com/Alexander-D-Karpov/concord.git
synced 2026-03-16 22:04:15 +03:00
15 lines
190 B
Go
15 lines
190 B
Go
package auth_test
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/Alexander-D-Karpov/concord/tests/testutil"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
code := m.Run()
|
|
testutil.Teardown()
|
|
os.Exit(code)
|
|
}
|