(conn, trace)
| 100 | |
| 101 | |
| 102 | def test_pipeline_nested_sync_trace(conn, trace): |
| 103 | t = trace.trace(conn) |
| 104 | with conn.pipeline(): |
| 105 | with conn.pipeline(): |
| 106 | pass |
| 107 | conn.close() |
| 108 | assert len([i for i in t if i.type == "Sync"]) == 2 |
| 109 | |
| 110 | |
| 111 | def test_cursor_stream(conn): |