(self)
| 93 | |
| 94 | class TestAtleast3d: |
| 95 | def test_0D_array(self): |
| 96 | a = array(1) |
| 97 | b = array(2) |
| 98 | res = [atleast_3d(a), atleast_3d(b)] |
| 99 | desired = [array([[[1]]]), array([[[2]]])] |
| 100 | assert_array_equal(res, desired) |
| 101 | |
| 102 | def test_1D_array(self): |
| 103 | a = array([1, 2]) |
nothing calls this directly
no test coverage detected