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

Method test_separate_key_get

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

Source from the content-addressed store, hash-verified

889 eq_(cc._all_columns, [c1, c2])
890
891 def test_separate_key_get(self):
892 c1, c2 = sql.column("col1"), sql.column("col2")
893 cc = self._column_collection([("kcol1", c1), ("kcol2", c2)])
894 is_(cc.kcol1, c1)
895 is_(cc.kcol2, c2)
896
897 def test_separate_key_in(self):
898 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