MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / test_participating

Method test_participating

test/sql/test_metadata.py:5329–5336  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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():

Callers

nothing calls this directly

Calls 3

_fixtureMethod · 0.95
IndexClass · 0.90
eq_Function · 0.90

Tested by

no test coverage detected