Skip to content
Snippets Groups Projects
Commit eedae99f authored by Daniel Rafeh's avatar Daniel Rafeh
Browse files

Test 13/17 erfolgreich

parent 824ec177
No related branches found
No related tags found
2 merge requests!4Main,!2Main to develop
......@@ -89,6 +89,10 @@ class TestConverter(unittest.TestCase):
def test_convertThousand(self):
res = self.c.convert(1000)
self.assertEqual(res, 'M')
def test_convertFourDigit(self):
res = self.c.convert(1111)
self.assertEqual(res, 'MCXI')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment