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

Method test_copy_doesnt_reference

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

Source from the content-addressed store, hash-verified

3706 assert not t2.c.a.references(s1.c.b)
3707
3708 def test_copy_doesnt_reference(self):
3709 t1, t2, t3 = self._single_fixture()
3710 a2 = t2.c.a._copy()
3711 assert not a2.references(t1.c.a)
3712 assert not a2.references(t1.c.b)
3713
3714 def test_derived_column_references(self):
3715 t1, t2, t3 = self._single_fixture()

Callers

nothing calls this directly

Calls 3

_single_fixtureMethod · 0.95
_copyMethod · 0.45
referencesMethod · 0.45

Tested by

no test coverage detected