Esempio n. 1
0
 def test_invalid_axis_type_in_tuple(self):
     with self.assertRaises(TypeError):
         functions.Sum((1, 'x'))
Esempio n. 2
0
 def test_duplicate_axis(self):
     with self.assertRaises(ValueError):
         functions.Sum((0, 0))
Esempio n. 3
0
 def test_invalid_axis_type(self):
     with self.assertRaises(TypeError):
         functions.Sum([0])