Lerning points where not fetched with correct params

This commit is contained in:
2026-01-12 16:36:35 +01:00
parent 0b57fbc618
commit 6cd9681fc3
2 changed files with 21 additions and 2 deletions
+12
View File
@@ -44,6 +44,18 @@ func TestGetCharacterClassLearningPoints(t *testing.T) {
checkSpells bool
expectedSpells int
}{
{
name: "Valid Spitzbube class Mittelschicht stand",
classParam: "Spitzbube",
standParam: "Mittelschicht",
expectedStatus: http.StatusOK,
expectError: false,
expectedClass: "Spitzbube",
checkWeapons: true,
expectedWeapons: 20,
checkSpells: true,
expectedSpells: 0,
},
{
name: "Valid Hexer class without stand",
classParam: "Hexer",