Fix friend_code max length issues in tests, and fix in_game_name length issues, also update tests to fit more scenarios

This commit is contained in:
badblocks 2025-03-27 17:26:07 -07:00
parent 0d4655bf80
commit b9c4d7a61d
10 changed files with 558 additions and 66 deletions

10
tests/utils/rarity.py Normal file
View file

@ -0,0 +1,10 @@
RARITY_MAPPING = {
1: "🔷",
2: "🔷🔷",
3: "🔷🔷🔷",
4: "🔷🔷🔷🔷",
5: "⭐️",
6: "⭐️⭐️",
7: "⭐️⭐️⭐️",
8: "👑"
}