(conn)
| 70 | |
| 71 | |
| 72 | def test_query_params_executemany(conn): |
| 73 | cur = conn.cursor() |
| 74 | |
| 75 | cur.executemany("select %t, %t", [[1, 2], [3, 4]]) |
| 76 | assert cur._query.query == b"select 3, 4" |
| 77 | assert cur._query.params == (b"3", b"4") |
| 78 | |
| 79 | |
| 80 | @pytest.mark.slow |
nothing calls this directly
no test coverage detected