main_test.go | 12 ++++++++++++ diff --git a/main_test.go b/main_test.go new file mode 100644 index 0000000000000000000000000000000000000000..b6e46230956b125187b093c924a74f2d7983f404 --- /dev/null +++ b/main_test.go @@ -0,0 +1,12 @@ +package torrent + +import ( + "os" + "testing" +) + +func TestMain(m *testing.M) { + code := m.Run() + // select {} + os.Exit(code) +}