(t *testing.T)
| 104 | } |
| 105 | |
| 106 | func TestOpen_Panic(t *testing.T) { |
| 107 | t.Skip("unskip this to manually test that we don't leak a database into postgres") |
| 108 | t.Parallel() |
| 109 | |
| 110 | _, err := dbtestutil.Open(t) |
| 111 | require.NoError(t, err) |
| 112 | panic("now check SELECT datname FROM pg_database;") |
| 113 | } |
| 114 | |
| 115 | func TestOpen_Timeout(t *testing.T) { |
| 116 | t.Skip("unskip this and set a short timeout to manually test that we don't leak a database into postgres") |