styx/main_test.go
2020-01-26 17:27:40 +01:00

11 lines
93 B
Go

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