We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
aiopg.sa
1 parent cd332a7 commit f533140Copy full SHA for f533140
python/ql/test/library-tests/frameworks/aiopg/test.py
@@ -17,3 +17,10 @@ async def test_cursor():
17
# Create Cursor directly
18
async with pool.cursor() as cur:
19
await cur.execute("sql") # $ getSql="sql" constructedSql="sql"
20
+
21
+from aiopg.sa import create_engine
22
23
+async def test_engine():
24
+ engine = await create_engine()
25
+ conn = await engine.acquire()
26
+ await conn.execute("sql") # $ MISSING: getSql="sql" constructedSql="sql"
0 commit comments