Skip to content

Commit 923a810

Browse files
committed
Corrected test docstrings
1 parent 458c3e0 commit 923a810

11 files changed

Lines changed: 18 additions & 18 deletions

tests/parser/dice/test_dice_parser_dice.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class TestSimpleDice(unittest.TestCase):
2020

2121
def setUp(self):
2222
"""
23-
Here the tests environment would be prepared.
23+
Initializes parser.
2424
"""
2525
self.parser = DiceParser()
2626

tests/parser/dice/test_dice_parser_dice_binary_operation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class TestDiceBinaryOperation(unittest.TestCase):
1919

2020
def setUp(self):
2121
"""
22-
Here the tests environment would be prepared.
22+
Initializes parser.
2323
"""
2424
self.parser = DiceParser()
2525

tests/parser/dice/test_dice_parser_dice_rollable.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class TestRollable(unittest.TestCase):
2020

2121
def setUp(self):
2222
"""
23-
Here the tests environment would be prepared.
23+
Initializes parser.
2424
"""
2525
self.parser = DiceParser()
2626

tests/parser/number/test_dice_parser_number.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class TestNumber(unittest.TestCase):
1919

2020
def setUp(self):
2121
"""
22-
Here the tests environment would be prepared.
22+
Initializes parser.
2323
"""
2424
self.parser = DiceParser()
2525

tests/parser/number/test_dice_parser_number_add.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class TestAdd(unittest.TestCase):
1919

2020
def setUp(self):
2121
"""
22-
Here the tests environment would be prepared.
22+
Initializes parser.
2323
"""
2424
self.parser = DiceParser()
2525

@@ -48,7 +48,7 @@ class TestAddLong(unittest.TestCase):
4848

4949
def setUp(self):
5050
"""
51-
Here the tests environment would be prepared.
51+
Initializes parser.
5252
"""
5353
self.parser = DiceParser()
5454

tests/parser/number/test_dice_parser_number_binary_op_mixed.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class TestNumericBinaryOperationMixed(unittest.TestCase):
1919

2020
def setUp(self):
2121
"""
22-
Here the tests environment would be prepared.
22+
Initializes parser.
2323
"""
2424
self.parser = DiceParser()
2525

tests/parser/number/test_dice_parser_number_rollable.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class TestRollable(unittest.TestCase):
2020

2121
def setUp(self):
2222
"""
23-
Here the tests environment would be prepared.
23+
Initializes parser.
2424
"""
2525
self.parser = DiceParser()
2626

@@ -56,7 +56,7 @@ class TestRoll(unittest.TestCase):
5656

5757
def setUp(self):
5858
"""
59-
Here the tests environment would be prepared.
59+
Initializes parser.
6060
"""
6161
self.parser = DiceParser()
6262

tests/parser/number/test_dice_parser_number_sub.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class TestSub(unittest.TestCase):
1919

2020
def setUp(self):
2121
"""
22-
Here the tests environment would be prepared.
22+
Initializes parser.
2323
"""
2424
self.parser = DiceParser()
2525

@@ -64,7 +64,7 @@ class TestSubLong(unittest.TestCase):
6464

6565
def setUp(self):
6666
"""
67-
Here the tests environment would be prepared.
67+
Initializes parser.
6868
"""
6969
self.parser = DiceParser()
7070

@@ -96,7 +96,7 @@ class TestNumericBinaryOperationMixed(unittest.TestCase):
9696

9797
def setUp(self):
9898
"""
99-
Here the tests environment would be prepared.
99+
Initializes parser.
100100
"""
101101
self.parser = DiceParser()
102102

tests/parser/test_dice_parser_invalid.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class TestIncompleteDice(unittest.TestCase):
1919

2020
def setUp(self):
2121
"""
22-
Here the tests environment would be prepared.
22+
Initializes parser.
2323
"""
2424
self.parser = DiceParser()
2525

@@ -56,7 +56,7 @@ class TestInvalidDice(unittest.TestCase):
5656

5757
def setUp(self):
5858
"""
59-
Here the tests environment would be prepared.
59+
Initializes parser.
6060
"""
6161
self.parser = DiceParser()
6262

@@ -86,7 +86,7 @@ class TestInvalidNumber(unittest.TestCase):
8686

8787
def setUp(self):
8888
"""
89-
Here the tests environment would be prepared.
89+
Initializes parser.
9090
"""
9191
self.parser = DiceParser()
9292

tests/parser/test_dice_parser_mixed.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class TestDiceAndNumber(unittest.TestCase):
2020

2121
def setUp(self):
2222
"""
23-
Here the tests environment would be prepared.
23+
Initializes parser.
2424
"""
2525
self.parser = DiceParser()
2626

@@ -64,7 +64,7 @@ class TestMultipleRoll(unittest.TestCase):
6464

6565
def setUp(self):
6666
"""
67-
Here the tests environment would be prepared.
67+
Initializes parser.
6868
"""
6969
self.parser = DiceParser()
7070

0 commit comments

Comments
 (0)