Fixture for Series of dtype object with Index of unique strings
()
| 812 | |
| 813 | @pytest.fixture |
| 814 | def object_series() -> Series: |
| 815 | """ |
| 816 | Fixture for Series of dtype object with Index of unique strings |
| 817 | """ |
| 818 | data = [f"foo_{i}" for i in range(30)] |
| 819 | index = Index([f"bar_{i}" for i in range(30)]) |
| 820 | return Series(data, index=index, name="objects", dtype=object) |
| 821 | |
| 822 | |
| 823 | @pytest.fixture |