styx/main_test.go

11 lines
93 B
Go

package styx
import (
"os"
"testing"
)
func TestMain(m *testing.M) {
os.Exit(m.Run())
}