(connection)
| 1825 | |
| 1826 | @event.listens_for(e1, "begin") |
| 1827 | def begin(connection): |
| 1828 | result = connection.execute(select(1)).scalar() |
| 1829 | canary.got_result(result) |
| 1830 | |
| 1831 | with e1.connect() as conn: |
| 1832 | conn.execute(select(1)).scalar() |
no test coverage detected