(self)
| 179 | assert_raises(ValueError, vstack, ()) |
| 180 | |
| 181 | def test_0D_array(self): |
| 182 | a = array(1) |
| 183 | b = array(2) |
| 184 | res = vstack([a, b]) |
| 185 | desired = array([[1], [2]]) |
| 186 | assert_array_equal(res, desired) |
| 187 | |
| 188 | def test_1D_array(self): |
| 189 | a = array([1]) |
nothing calls this directly
no test coverage detected