summaryrefslogtreecommitdiff
path: root/a_test.go
blob: ac16340e77d605464f8121471b73339b43f19396 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* For go test with go version < 1.4 */

package main

import (
	"flag"
	"testing"
)

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

func TestMain(t *testing.T) {
	InitDB()
}