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