Files
dungeon-sheets/tests/test_monsters.py
T
Mark Wolfman 0e543deee9 Added Druid wild shapes, tweaked armor, and fixed some bugs.
Druid's can now add ``wild_shapes = `` to their character file. "Light
leather armor" is now just "Leather Armor".
2018-10-21 02:09:15 -05:00

14 lines
360 B
Python

#!/usr/bin/env python
from unittest import TestCase
from dungeonsheets import monsters, exceptions
class MonsterTestCase(TestCase):
def test_ability_scores(self):
wolf = monsters.Wolf()
self.assertEqual(wolf.strength.value, 12)
self.assertEqual(wolf.strength.modifier, 1)
self.assertEqual(wolf.strength.saving_throw, 1)