Exemplo n.º 1
0
 def test_map(self, input, output):
     ret = [util.conv_float(el) for el in input]
     assert ret == output
Exemplo n.º 2
0
 def test_str(self):
     assert_equal(util.conv_float('a.b'), 'a.b')
Exemplo n.º 3
0
 def test_float(self, s, output):
     assert util.conv_float(s) == output
Exemplo n.º 4
0
 def test_float_2(self):
     assert_equal(util.conv_float('.45'), 0.45)
Exemplo n.º 5
0
 def test_str(self):
     assert_equal(util.conv_float('a.b'), 'a.b')
Exemplo n.º 6
0
 def test_float_2(self):
     assert_equal(util.conv_float('.45'), 0.45)
Exemplo n.º 7
0
 def test_map_2(self):
     ret = [util.conv_float(el) for el in ('0.45', 'a.b', '!!')]
     assert_equal(ret, [0.45, 'a.b', '!!'])
Exemplo n.º 8
0
 def test_map_1(self):
     ret = [util.conv_float(el) for el in ('0.45', '0.56', '6.7')]
     assert_equal(ret, [0.45, 0.56, 6.7])