styx/main_test.go

11 lines
93 B
Go
Raw Normal View History

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