Ejemplo n.º 1
0
 def test_get_shape_helper_2(self):
     self.assertEqual(hfmath.get_shape_helper((1, 2, 3, 4), 2), (3, 4,))
Ejemplo n.º 2
0
 def test_get_shape_helper_3(self):
     self.assertEqual(hfmath.get_shape_helper((1, 2, 3, 4), 0), tuple())
Ejemplo n.º 3
0
 def test_get_shape_helper_1(self):
     self.assertEqual(hfmath.get_shape_helper((1, 2, 3, 4), 1), (4,))