Ejemplo n.º 1
0
 def test_std_val_other_prefixed_string(self):
     with self.assertRaises(ValueError):
         _std_val('B15', 'A')
Ejemplo n.º 2
0
 def test_std_val_negative_int(self):
     with self.assertRaises(ValueError):
         _std_val(-14, 'A')
Ejemplo n.º 3
0
 def test_std_val_other_string(self):
     with self.assertRaises(ValueError):
         _std_val('Foo', 'A')
Ejemplo n.º 4
0
 def test_std_val_int_string(self):
     self.assertEqual(_std_val('12', 'A'), 'A12')
Ejemplo n.º 5
0
 def test_std_val_prefixed_string(self):
     self.assertEqual(_std_val('A13', 'A'), 'A13')
Ejemplo n.º 6
0
 def test_std_val_empty_string(self):
     with self.assertRaises(ValueError):
         _std_val('', 'A')
Ejemplo n.º 7
0
 def test_std_val_int(self):
     self.assertEqual(_std_val(11, 'A'), 'A11')
Ejemplo n.º 8
0
 def test_std_val_other_prefixed_string(self):
     with self.assertRaises(ValueError):
         _std_val('B15', 'A')
Ejemplo n.º 9
0
 def test_std_val_none(self):
     with self.assertRaises(ValueError):
         _std_val(None, 'A')
Ejemplo n.º 10
0
 def test_std_val_negative_int(self):
     with self.assertRaises(ValueError):
         _std_val(-14, 'A')
Ejemplo n.º 11
0
 def test_std_val_other_string(self):
     with self.assertRaises(ValueError):
         _std_val('Foo', 'A')
Ejemplo n.º 12
0
 def test_std_val_prefixed_string(self):
     self.assertEqual(_std_val('A13', 'A'), 'A13')
Ejemplo n.º 13
0
 def test_std_val_int_string(self):
     self.assertEqual(_std_val('12', 'A'), 'A12')
Ejemplo n.º 14
0
 def test_std_val_int(self):
     self.assertEqual(_std_val(11, 'A'), 'A11')
Ejemplo n.º 15
0
 def test_std_val_empty_string(self):
     with self.assertRaises(ValueError):
         _std_val('', 'A')
Ejemplo n.º 16
0
 def test_std_val_none(self):
     with self.assertRaises(ValueError):
         _std_val(None, 'A')