Added instructions for running tests and building docs.

This commit is contained in:
Mark Wolfman
2022-03-20 11:37:30 -05:00
parent de1506c13f
commit 630ce519a1
4 changed files with 68 additions and 0 deletions
+1
View File
@@ -26,6 +26,7 @@ class TestDice(TestCase):
def test_simple_rolling(self):
num_tests = 100
# Do a bunch of rolls and make sure the numbers are within the requsted range
for _ in range(num_tests):
result = roll(6)
self.assertGreaterEqual(result, 1)