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