(self)
| 7109 | eq_(call_, mock.call(clause=mock.ANY)) |
| 7110 | |
| 7111 | def test_single_entity_q(self): |
| 7112 | User = self.classes.User |
| 7113 | session = fixture_session() |
| 7114 | with self._assert_bind_args(session, expect_mapped_bind=True): |
| 7115 | session.query(User).all() |
| 7116 | |
| 7117 | def test_aliased_entity_q(self): |
| 7118 | User = self.classes.User |
nothing calls this directly
no test coverage detected