1
0
mirror of https://github.com/zrepl/zrepl.git synced 2025-03-09 20:52:52 +01:00
zrepl/client/migrate_test.go

17 lines
309 B
Go
Raw Normal View History

package client
import "testing"
func TestMigrationsUnambiguousNames(t *testing.T) {
names := make(map[string]bool)
for _, mig := range migrations {
if _, ok := names[mig.Use]; ok {
t.Errorf("duplicate migration name %q", mig.Use)
t.FailNow()
return
} else {
names[mig.Use] = true
}
}
}