()
| 6 | |
| 7 | |
| 8 | def test_multi_statements_default_true(): |
| 9 | conn = connection_factory() |
| 10 | cursor = conn.cursor() |
| 11 | |
| 12 | cursor.execute("select 17; select 2") |
| 13 | rows = cursor.fetchall() |
| 14 | assert rows == ((17,),) |
| 15 | |
| 16 | |
| 17 | def test_multi_statements_false(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…