def testFromRomanCase(self):
     """fromRoman should only accept uppercase input"""
     for integer in range(1, 4000):
         numeral = roman5.toRoman(integer)
         roman5.fromRoman(numeral.upper())
         self.assertRaises(roman5.InvalidRomanNumeralError,
                           roman5.fromRoman, numeral.lower())
 def testFromRomanCase(self):
     """fromRoman should only accept uppercase input"""
     for integer in range(1, 4000):
         numeral = roman5.toRoman(integer)
         roman5.fromRoman(numeral.upper())
         self.assertRaises(roman5.InvalidRomanNumeralError,
                           roman5.fromRoman, numeral.lower())
 def testFromRomanKnownValues(self):
     """fromRoman should give known result with known input"""
     for integer, numeral in self.knownValues:
         result = roman5.fromRoman(numeral)
         self.assertEqual(integer, result)
 def testSanity(self):
     """fromRoman(toRoman(n))==n for all n"""
     for integer in range(1, 4000):
         numeral = roman5.toRoman(integer)
         result = roman5.fromRoman(numeral)
         self.assertEqual(integer, result)
 def testSanity(self):
     """fromRoman(toRoman(n))==n for all n"""
     for integer in range(1, 4000):
         numeral = roman5.toRoman(integer)
         result = roman5.fromRoman(numeral)
         self.assertEqual(integer, result)
 def testFromRomanKnownValues(self):
     """fromRoman should give known result with known input"""
     for integer, numeral in self.knownValues:
         result = roman5.fromRoman(numeral)
         self.assertEqual(integer, result)