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