(self)
| 35 | assert_array_equal(res, desired) |
| 36 | |
| 37 | def test_3D_array(self): |
| 38 | a = array([[1, 2], [1, 2]]) |
| 39 | b = array([[2, 3], [2, 3]]) |
| 40 | a = array([a, a]) |
| 41 | b = array([b, b]) |
| 42 | res = [atleast_1d(a), atleast_1d(b)] |
| 43 | desired = [a, b] |
| 44 | assert_array_equal(res, desired) |
| 45 | |
| 46 | def test_r1array(self): |
| 47 | """ Test to make sure equivalent Travis O's r1array function |
nothing calls this directly
no test coverage detected