(self, block)
| 755 | assert_raises_regex(ValueError, 'empty', block, [[1], []]) |
| 756 | |
| 757 | def test_tuple(self, block): |
| 758 | assert_raises_regex(TypeError, 'tuple', block, ([1, 2], [3, 4])) |
| 759 | assert_raises_regex(TypeError, 'tuple', block, [(1, 2), (3, 4)]) |
| 760 | |
| 761 | def test_different_ndims(self, block): |
| 762 | a = 1. |
nothing calls this directly
no test coverage detected