(self)
| 2945 | self._test(thing) |
| 2946 | |
| 2947 | def test_join_no_clear(self): |
| 2948 | Thing, Human = self.classes.Thing, self.classes.Human |
| 2949 | |
| 2950 | session = fixture_session() |
| 2951 | result = ( # noqa |
| 2952 | session.query(Human).add_entity(Thing).join(Human.thing).first() |
| 2953 | ) |
| 2954 | thing = ( |
| 2955 | session.query(Thing).options(sa.orm.undefer(Thing.name)).first() |
| 2956 | ) |
| 2957 | self._test(thing) |
nothing calls this directly
no test coverage detected