MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / test_separate_key_get

Method test_separate_key_get

test/base/test_utils.py:986–990  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

984 eq_(cc._all_columns, [c1, c2])
985
986 def test_separate_key_get(self):
987 c1, c2 = sql.column("col1"), sql.column("col2")
988 cc = self._column_collection([("kcol1", c1), ("kcol2", c2)])
989 is_(cc.kcol1, c1)
990 is_(cc.kcol2, c2)
991
992 def test_separate_key_in(self):
993 cc = self._column_collection(

Callers

nothing calls this directly

Calls 3

_column_collectionMethod · 0.95
is_Function · 0.90
columnMethod · 0.45

Tested by

no test coverage detected