(self)
| 152 | assert_raises(ValueError, hstack, ()) |
| 153 | |
| 154 | def test_0D_array(self): |
| 155 | a = array(1) |
| 156 | b = array(2) |
| 157 | res = hstack([a, b]) |
| 158 | desired = array([1, 2]) |
| 159 | assert_array_equal(res, desired) |
| 160 | |
| 161 | def test_1D_array(self): |
| 162 | a = array([1]) |
nothing calls this directly
no test coverage detected