(t *testing.T, migrations []string)
| 27 | } |
| 28 | |
| 29 | func ReadOnlyPostgreSQL(t *testing.T, migrations []string) string { |
| 30 | return postgreSQL(t, migrations, false) |
| 31 | } |
| 32 | |
| 33 | func postgreSQL(t *testing.T, migrations []string, rw bool) string { |
| 34 | ctx := context.Background() |
nothing calls this directly
no test coverage detected