2
0
mirror of synced 2025-02-23 14:18:13 +00:00

Skeleton TestMain

Used with manual inspection of process after tests finish.
This commit is contained in:
Matt Joiner 2016-07-10 22:58:43 +10:00
parent 40aa30d984
commit 0dbb943bc7

12
main_test.go Normal file
View File

@ -0,0 +1,12 @@
package torrent
import (
"os"
"testing"
)
func TestMain(m *testing.M) {
code := m.Run()
// select {}
os.Exit(code)
}