MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / test_combined

Method test_combined

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

Source from the content-addressed store, hash-verified

5432 ) # still populates
5433
5434 def test_combined(self):
5435 with self._fixture():
5436 idx = Index(
5437 "a", "b", "c", participating_x=7, nonparticipating_y=True
5438 )
5439
5440 eq_(
5441 idx.dialect_options,
5442 {
5443 "participating": {"y": False, "x": 7, "z_one": None},
5444 "nonparticipating": {"y": True, "*": None},
5445 },
5446 )
5447 eq_(
5448 idx.dialect_kwargs,
5449 {"participating_x": 7, "nonparticipating_y": True},
5450 )
5451
5452 def test_multiple_participating(self):
5453 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