(self, buf, width, fillchar, res, dt)
| 887 | ('abc', 10, '*', 'abc*******'), |
| 888 | ]) |
| 889 | def test_ljust(self, buf, width, fillchar, res, dt): |
| 890 | buf = np.array(buf, dtype=dt) |
| 891 | fillchar = np.array(fillchar, dtype=dt) |
| 892 | res = np.array(res, dtype=dt) |
| 893 | assert_array_equal(np.strings.ljust(buf, width, fillchar), res) |
| 894 | |
| 895 | @pytest.mark.parametrize("buf,width,fillchar,res", [ |
| 896 | ('abc', 10, ' ', ' abc'), |
nothing calls this directly
no test coverage detected