mirror of
https://github.com/zrepl/zrepl.git
synced 2024-11-21 16:03:32 +01:00
17 lines
309 B
Go
17 lines
309 B
Go
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
|
|
}
|
|
}
|
|
}
|