(self, buf, width, res, dt)
| 923 | ('0034', 4, '0034'), |
| 924 | ]) |
| 925 | def test_zfill(self, buf, width, res, dt): |
| 926 | buf = np.array(buf, dtype=dt) |
| 927 | res = np.array(res, dtype=dt) |
| 928 | assert_array_equal(np.strings.zfill(buf, width), res) |
| 929 | |
| 930 | @pytest.mark.parametrize("buf,sep,res1,res2,res3", [ |
| 931 | ("this is the partition method", "ti", "this is the par", |
nothing calls this directly
no test coverage detected