(m *testing.M)
| 131 | }) |
| 132 | } |
| 133 | func TestMain(m *testing.M) { |
| 134 | testutil.Setup() // will call flag.Parse() |
| 135 | |
| 136 | // Now run the actual Tests |
| 137 | os.Exit(m.Run()) |
| 138 | } |
| 139 | |
| 140 | func planContext(query string) *plan.Context { |
| 141 | ctx := plan.NewContext(query) |