(self, buf, width, fillchar, res, dt)
| 1229 | ('x', 4, '\U0001044E', '\U0001044E\U0001044E\U0001044Ex'), |
| 1230 | ]) |
| 1231 | def test_rjust(self, buf, width, fillchar, res, dt): |
| 1232 | buf = np.array(buf, dtype=dt) |
| 1233 | fillchar = np.array(fillchar, dtype=dt) |
| 1234 | res = np.array(res, dtype=dt) |
| 1235 | assert_array_equal(np.strings.rjust(buf, width, fillchar), res) |
| 1236 | |
| 1237 | @pytest.mark.parametrize("buf,sep,res1,res2,res3", [ |
| 1238 | ("āāāāĀĀĀĀ", "Ă", "āāāāĀĀĀĀ", "", ""), |
nothing calls this directly
no test coverage detected