(self, async_session, kw)
| 179 | {}, dict(execution_options={"logging_token": "test"}), argnames="kw" |
| 180 | ) |
| 181 | async def test_execute(self, async_session, kw): |
| 182 | User = self.classes.User |
| 183 | |
| 184 | stmt = ( |
| 185 | select(User) |
| 186 | .options(selectinload(User.addresses)) |
| 187 | .order_by(User.id) |
| 188 | ) |
| 189 | |
| 190 | result = await async_session.execute(stmt, **kw) |
| 191 | eq_(result.scalars().all(), self.static.user_address_result) |
| 192 | |
| 193 | @async_test |
| 194 | async def test_scalar(self, async_session): |