MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / test_participating

Method test_participating

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 3

_fixtureMethod · 0.95
IndexClass · 0.90
eq_Function · 0.90

Tested by

no test coverage detected