(self)
| 131 | assert_raises(ValueError, hstack, ()) |
| 132 | |
| 133 | def test_0D_array(self): |
| 134 | a = array(1) |
| 135 | b = array(2) |
| 136 | res = hstack([a, b]) |
| 137 | desired = array([1, 2]) |
| 138 | assert_array_equal(res, desired) |
| 139 | |
| 140 | def test_1D_array(self): |
| 141 | a = array([1]) |
nothing calls this directly
no test coverage detected