(t *testing.T)
| 83 | } |
| 84 | |
| 85 | func TestRemovePsqlMetaCommands(t *testing.T) { |
| 86 | if diff := cmp.Diff(outputPsqlMeta, RemovePsqlMetaCommands(inputPsqlMeta)); diff != "" { |
| 87 | t.Errorf("psql meta-command mismatch:\n%s", diff) |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | func TestRemoveGolangMigrateRollback(t *testing.T) { |
| 92 | filenames := map[string]bool{ |
nothing calls this directly
no test coverage detected