2
0
mirror of synced 2025-02-23 22:28:11 +00:00
torrent/main_test.go
Matt Joiner 0dbb943bc7 Skeleton TestMain
Used with manual inspection of process after tests finish.
2016-07-10 22:58:43 +10:00

13 lines
124 B
Go

package torrent
import (
"os"
"testing"
)
func TestMain(m *testing.M) {
code := m.Run()
// select {}
os.Exit(code)
}