(self, buf, width, fillchar, res, dt)
| 901 | ('abc', 10, '*', '*******abc'), |
| 902 | ]) |
| 903 | def test_rjust(self, buf, width, fillchar, res, dt): |
| 904 | buf = np.array(buf, dtype=dt) |
| 905 | fillchar = np.array(fillchar, dtype=dt) |
| 906 | res = np.array(res, dtype=dt) |
| 907 | assert_array_equal(np.strings.rjust(buf, width, fillchar), res) |
| 908 | |
| 909 | @pytest.mark.parametrize("buf,width,res", [ |
| 910 | ('123', 2, '123'), |
nothing calls this directly
no test coverage detected