Test if `x` already matching desired output are passed through.
(self)
| 80 | ) |
| 81 | |
| 82 | def test_pass_through(self): |
| 83 | """Test if `x` already matching desired output are passed through.""" |
| 84 | expected = np.arange(12).reshape((6, 2)) |
| 85 | assert_equal( |
| 86 | _as_pairs(expected, 6), |
| 87 | expected |
| 88 | ) |
| 89 | |
| 90 | def test_as_index(self): |
| 91 | """Test results if `as_index=True`.""" |
nothing calls this directly
no test coverage detected