INNER CODE UNIT · Go
TestMain
whalebrew/whalebrew · main_test.go:48
func TestMain(m *testing.M) {
if os.Getenv("RUN_WHALEBREW") == "true" {
main()
os.Exit(0)
}
os.Exit(m.Run())
}
INNER CODE UNIT · Go
whalebrew/whalebrew · main_test.go:48
func TestMain(m *testing.M) {
if os.Getenv("RUN_WHALEBREW") == "true" {
main()
os.Exit(0)
}
os.Exit(m.Run())
}