(self)
| 7634 | eq_(call_, mock.call(clause=mock.ANY)) |
| 7635 | |
| 7636 | def test_single_entity_q(self): |
| 7637 | User = self.classes.User |
| 7638 | session = fixture_session() |
| 7639 | with self._assert_bind_args(session, expect_mapped_bind=True): |
| 7640 | session.query(User).all() |
| 7641 | |
| 7642 | def test_aliased_entity_q(self): |
| 7643 | User = self.classes.User |
nothing calls this directly
no test coverage detected