(self, block)
| 829 | assert_raises_regex(ValueError, 'empty', block, [[1], []]) |
| 830 | |
| 831 | def test_tuple(self, block): |
| 832 | assert_raises_regex(TypeError, 'tuple', block, ([1, 2], [3, 4])) |
| 833 | assert_raises_regex(TypeError, 'tuple', block, [(1, 2), (3, 4)]) |
| 834 | |
| 835 | def test_different_ndims(self, block): |
| 836 | a = 1. |
nothing calls this directly
no test coverage detected