(self)
| 5327 | Index._kw_registry.clear() |
| 5328 | |
| 5329 | def test_participating(self): |
| 5330 | with self._fixture(): |
| 5331 | idx = Index("a", "b", "c", participating_y=True) |
| 5332 | eq_( |
| 5333 | idx.dialect_options, |
| 5334 | {"participating": {"x": 5, "y": True, "z_one": None}}, |
| 5335 | ) |
| 5336 | eq_(idx.dialect_kwargs, {"participating_y": True}) |
| 5337 | |
| 5338 | def test_nonparticipating(self): |
| 5339 | with self._fixture(): |