(self, async_session, kw)
| 272 | {}, dict(execution_options={"logging_token": "test"}), argnames="kw" |
| 273 | ) |
| 274 | async def test_execute(self, async_session, kw): |
| 275 | User = self.classes.User |
| 276 | |
| 277 | stmt = ( |
| 278 | select(User) |
| 279 | .options(selectinload(User.addresses)) |
| 280 | .order_by(User.id) |
| 281 | ) |
| 282 | |
| 283 | result = await async_session.execute(stmt, **kw) |
| 284 | eq_(result.scalars().all(), self.static.user_address_result) |
| 285 | |
| 286 | @async_test |
| 287 | async def test_scalar(self, async_session): |