(t *testing.T)
| 141 | } |
| 142 | |
| 143 | func TestQueries(t *testing.T) { |
| 144 | t.Parallel() |
| 145 | |
| 146 | uri := local.PostgreSQL(t, []string{"schema"}) |
| 147 | db, err := sql.Open("postgres", uri) |
| 148 | if err != nil { |
| 149 | t.Fatalf("%s: %s", uri, err) |
| 150 | } |
| 151 | defer db.Close() |
| 152 | |
| 153 | runOnDeckQueries(t, New(db)) |
| 154 | } |
nothing calls this directly
no test coverage detected