Exemplo n.º 1
0
 def test_correct_format(self):
     self.assertTrue(local_specs.price_check('0.99'))
Exemplo n.º 2
0
 def test_incorrect_data(self):
     self.assertFalse(local_specs.price_check('abc'))
Exemplo n.º 3
0
 def test_None_in_subfield(self):
     self.assertFalse(local_specs.price_check(None))
Exemplo n.º 4
0
 def test_inocorrect_format(self):
     self.assertFalse(local_specs.price_check('999'))
Exemplo n.º 5
0
 def test_empty_subfield(self):
     self.assertFalse(local_specs.price_check(''))