def test_safeMax_list_with_nan(self):
     self.assertEqual(glyph.safeMax([1, 5.1, 6, float('Nan')]), 6)
 def test_safeMax_list_with_string(self):
     with self.assertRaises(TypeError):
         glyph.safeMax(['a', 10, 30])
 def test_safeMax_list_all_numbers(self):
     self.assertEqual(glyph.safeMax([1, 5.1, 6]), 6)
 def test_safeMax_number_not_list(self):
     with self.assertRaises(TypeError):
         glyph.safeMax(1)
 def test_safeMax_empty_string(self):
     self.assertEqual(glyph.safeMax(''), None)
Example #6
0
 def test_safeMax_list_with_nan(self):
     self.assertEqual(glyph.safeMax([1, 5.1, 6, float('Nan')]), 6)
 def test_safeMax_None(self):
     with self.assertRaises(TypeError):
         glyph.safeMax(None)
Example #8
0
 def test_safeMax_list_all_numbers(self):
     self.assertEqual(glyph.safeMax([1, 5.1, 6]), 6)
Example #9
0
 def test_safeMax_list_with_string(self):
     with self.assertRaises(TypeError):
         glyph.safeMax(['a', 10, 30])
Example #10
0
 def test_safeMax_empty_string(self):
     self.assertEqual(glyph.safeMax(''), None)
Example #11
0
 def test_safeMax_number_not_list(self):
     with self.assertRaises(TypeError):
         glyph.safeMax(1)
Example #12
0
 def test_safeMax_None(self):
     with self.assertRaises(TypeError):
         glyph.safeMax(None)