(t *testing.T)
| 33 | } |
| 34 | |
| 35 | func TestQueryEmptyPool(t *testing.T) { |
| 36 | _, conn := newCore(t) |
| 37 | conn.TestPoolPost(api.PoolPostRequest{Name: "test"}) |
| 38 | assert.Equal(t, "", conn.TestQuery("from test")) |
| 39 | } |
| 40 | |
| 41 | func TestQueryAggregateReverse(t *testing.T) { |
| 42 | src := ` |
nothing calls this directly
no test coverage detected