(self)
| 1512 | __requires__ = ("asyncio",) |
| 1513 | |
| 1514 | def test_sync_dbapi_raises(self): |
| 1515 | with expect_raises_message( |
| 1516 | exc.InvalidRequestError, |
| 1517 | "The asyncio extension requires an async driver to be used.", |
| 1518 | ): |
| 1519 | create_async_engine("sqlite:///:memory:") |
| 1520 | |
| 1521 | @testing.fixture |
| 1522 | def async_engine(self): |
nothing calls this directly
no test coverage detected