MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / test_nonparticipating

Method test_nonparticipating

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

Source from the content-addressed store, hash-verified

5336 eq_(idx.dialect_kwargs, {"participating_y": True})
5337
5338 def test_nonparticipating(self):
5339 with self._fixture():
5340 idx = Index(
5341 "a", "b", "c", nonparticipating_y=True, nonparticipating_q=5
5342 )
5343 eq_(
5344 idx.dialect_kwargs,
5345 {"nonparticipating_y": True, "nonparticipating_q": 5},
5346 )
5347
5348 def test_bad_kwarg_raise(self):
5349 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