(self)
| 5120 | Index._kw_registry.clear() |
| 5121 | |
| 5122 | def test_participating(self): |
| 5123 | with self._fixture(): |
| 5124 | idx = Index("a", "b", "c", participating_y=True) |
| 5125 | eq_( |
| 5126 | idx.dialect_options, |
| 5127 | {"participating": {"x": 5, "y": True, "z_one": None}}, |
| 5128 | ) |
| 5129 | eq_(idx.dialect_kwargs, {"participating_y": True}) |
| 5130 | |
| 5131 | def test_nonparticipating(self): |
| 5132 | with self._fixture(): |