Exemplo n.º 1
0
 def test_find_decimal4(self):
     thedouble = "2040"
     try:
         thedouble = tools.find_decimal(thedouble)
         self.fail("No error was thrown while parsing an invalid number " + thedouble)
     except NoNumError as error:
         return
Exemplo n.º 2
0
 def test_find_decimal3(self):
     thedouble = "-9000.0000"
     try:
         thedouble = tools.find_decimal(thedouble)
         self.fail("No error was thrown while parsing an invalid double" + thedouble)
     except NoNumError as error:
         return
Exemplo n.º 3
0
 def test_find_decimal4(self):
     thedouble = "2040"
     try:
         thedouble = tools.find_decimal(thedouble)
         self.fail("No error was thrown while parsing an invalid number " +
                   thedouble)
     except NoNumError as error:
         return
Exemplo n.º 4
0
 def test_find_decimal3(self):
     thedouble = "-9000.0000"
     try:
         thedouble = tools.find_decimal(thedouble)
         self.fail("No error was thrown while parsing an invalid double" +
                   thedouble)
     except NoNumError as error:
         return
Exemplo n.º 5
0
 def test_find_decimal_in_text(self):
     self.assertEquals(tools.find_decimal(self.line), self.double1)
Exemplo n.º 6
0
 def test_find_decimal2(self):
     self.assertEquals(tools.find_decimal(str(self.double2)), self.double2)
Exemplo n.º 7
0
 def test_find_decimal_in_text(self):
     self.assertEquals(tools.find_decimal(self.line), self.double1)
Exemplo n.º 8
0
 def test_find_decimal2(self):
     self.assertEquals(tools.find_decimal(str(self.double2)), self.double2)
Exemplo n.º 9
0
 def test_find_decimal1(self):
     self.assertEqual(tools.find_decimal(str(self.double1)), self.double1)