(self)
| 5432 | ) # still populates |
| 5433 | |
| 5434 | def test_combined(self): |
| 5435 | with self._fixture(): |
| 5436 | idx = Index( |
| 5437 | "a", "b", "c", participating_x=7, nonparticipating_y=True |
| 5438 | ) |
| 5439 | |
| 5440 | eq_( |
| 5441 | idx.dialect_options, |
| 5442 | { |
| 5443 | "participating": {"y": False, "x": 7, "z_one": None}, |
| 5444 | "nonparticipating": {"y": True, "*": None}, |
| 5445 | }, |
| 5446 | ) |
| 5447 | eq_( |
| 5448 | idx.dialect_kwargs, |
| 5449 | {"participating_x": 7, "nonparticipating_y": True}, |
| 5450 | ) |
| 5451 | |
| 5452 | def test_multiple_participating(self): |
| 5453 | with self._fixture(): |