diff --git a/irc/strings_test.go b/irc/strings_test.go index 595ef7f6..40d32f68 100644 --- a/irc/strings_test.go +++ b/irc/strings_test.go @@ -189,6 +189,10 @@ func TestSkeleton(t *testing.T) { t.Errorf("we must protect against cyrillic homoglyph attacks") } + if skeleton("еmily") != skeleton("emily") { + t.Errorf("we must protect against cyrillic homoglyph attacks") + } + if skeleton("РОТАТО") != "potato" { t.Errorf("we must protect against cyrillic homoglyph attacks") }