Remove Flagmojis dependency

This commit is contained in:
Claudio Ortolina
2026-02-24 08:58:49 +00:00
parent 8eaaa3cfec
commit 16e0bf03a9
3 changed files with 0 additions and 9 deletions
-7
View File
@@ -35,12 +35,5 @@ defmodule MusicLibrary.CountryTest do
assert Country.to_emoji("en-US") == "🇺🇸"
assert Country.to_emoji("pl-PL") == "🇵🇱"
end
test "matches Flagmojis output for all alpha-2 codes" do
for %Flagmojis.Flag{iso: iso, emoji: expected} <- Flagmojis.Data.all() do
assert Country.to_emoji(iso) == expected,
"mismatch for #{iso}: expected #{expected}, got #{Country.to_emoji(iso)}"
end
end
end
end