MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / test_query_cols_legacy

Method test_query_cols_legacy

test/orm/test_composites.py:536–544  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

534 eq_(get_history(e1, "end"), ((), [Point(x=None, y=None)], ()))
535
536 def test_query_cols_legacy(self):
537 Edge = self.classes.Edge
538
539 sess = self._fixture()
540
541 eq_(
542 sess.query(Edge.start.clauses, Edge.end.clauses).all(),
543 [(3, 4, 5, 6), (14, 5, 2, 7)],
544 )
545
546 def test_query_cols(self):
547 Edge = self.classes.Edge

Callers

nothing calls this directly

Calls 4

_fixtureMethod · 0.95
eq_Function · 0.90
allMethod · 0.45
queryMethod · 0.45

Tested by

no test coverage detected