(connection)
| 1885 | |
| 1886 | @event.listens_for(e1, "begin") |
| 1887 | def begin(connection): |
| 1888 | result = connection.execute(select(1)).scalar() |
| 1889 | canary.got_result(result) |
| 1890 | |
| 1891 | with e1.connect() as conn: |
| 1892 | conn.execute(select(1)).scalar() |
no test coverage detected