summaryrefslogtreecommitdiff
path: root/main_test.go
blob: 46cdf44243a8e1c052c06f244cb0834353f1318c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package main

/*
//Go version 1.4+ only.

import (
	"os"
	"testing"
	"flag"
)

var testExternal = flag.Bool("external", false, "allow use of external networks during long test")

func TestMain(m *testing.M) {
	InitDB()
	os.Exit(m.Run())
}
*/