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

Method test_nonparticipating

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

Source from the content-addressed store, hash-verified

5129 eq_(idx.dialect_kwargs, {"participating_y": True})
5130
5131 def test_nonparticipating(self):
5132 with self._fixture():
5133 idx = Index(
5134 "a", "b", "c", nonparticipating_y=True, nonparticipating_q=5
5135 )
5136 eq_(
5137 idx.dialect_kwargs,
5138 {"nonparticipating_y": True, "nonparticipating_q": 5},
5139 )
5140
5141 def test_bad_kwarg_raise(self):
5142 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