(t *testing.T)
| 161 | } |
| 162 | |
| 163 | func TestQueries(t *testing.T) { |
| 164 | t.Parallel() |
| 165 | |
| 166 | sdb, cleanup := sqltest.SQLite(t, []string{"schema"}) |
| 167 | defer sdb.Close() |
| 168 | defer cleanup() |
| 169 | |
| 170 | runOnDeckQueries(t, New(sdb)) |
| 171 | } |
nothing calls this directly
no test coverage detected