Example #1
0
 def test_romanify_3999(self):
     self.assertEqual(lab1_dc.romanify(3999), "MMMCMXCIX")
Example #2
0
 def test_romanify_49(self):
     self.assertEqual(lab1_dc.romanify(49), "XLIX")
Example #3
0
 def test_romanify_99(self):
     self.assertEqual(lab1_dc.romanify(99), "XCIX")
Example #4
0
 def test_romanify_3(self):
     self.assertEqual(lab1_dc.romanify(3), "III")
Example #5
0
 def test_romanify_10(self):
     self.assertEqual(lab1_dc.romanify(10), "X")
Example #6
0
	def test_romanify_3999(self):
		self.assertEqual(lab1_dc.romanify(3999), "MMMCMXCIX")
Example #7
0
	def test_romanify_99(self):
		self.assertEqual(lab1_dc.romanify(99), "XCIX")
Example #8
0
	def test_romanify_49(self):
		self.assertEqual(lab1_dc.romanify(49), "XLIX")
Example #9
0
	def test_romanify_10(self):
		self.assertEqual(lab1_dc.romanify(10), "X")
Example #10
0
	def test_romanify_3(self):
		self.assertEqual(lab1_dc.romanify(3), "III")