Example #1
0
def test_wizard_spells():
    wizard_spells = get_Spells('Wizard', 10)
    assert len(wizard_spells) == 29
Example #2
0
def test_sorcerer_spells():
    sorcerer_spells = get_Spells('Sorcerer', 10)
    assert len(sorcerer_spells) == 15
Example #3
0
def test_warlock_spells():
    warlock_spells = get_Spells('Warlock', 10)
    assert len(warlock_spells) == 5
Example #4
0
def test_ranger_spells():
    ranger_spells = get_Spells('Ranger', 10)
    assert len(ranger_spells) == 7
Example #5
0
def test_rogue_spells():
    rogue_spells = get_Spells('Rogue', 10)
    assert len(rogue_spells) == 0
Example #6
0
def test_monk_spells():
    monk_spells = get_Spells('Monk', 10)
    assert len(monk_spells) == 0
Example #7
0
def test_paladin_spells():
    paladin_spells = get_Spells('Paladin', 10)
    assert len(paladin_spells) == 9
Example #8
0
def test_fighter_spells():
    fighter_spells = get_Spells('Fighter', 10)
    assert len(fighter_spells) == 0
Example #9
0
def test_druid_spells():
    druid_spells = get_Spells('Druid', 10)
    assert len(druid_spells) == 13
Example #10
0
def test_cleric_spells():
    cleric_spells = get_Spells('Cleric', 10)
    assert len(cleric_spells) == 13
Example #11
0
def test_bard_spells():
    bard_spells = get_Spells('Bard', 10)
    assert len(bard_spells) == 9
Example #12
0
def test_barbarian_spells():
    barb_spells = get_Spells('Barbarian', 10)
    assert len(barb_spells) == 0