(self)
| 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() |
nothing calls this directly
no test coverage detected