()
| 385 | |
| 386 | @pytest.fixture |
| 387 | def ipython_with_prompt(): |
| 388 | ip = get_ipython() |
| 389 | ip.pt_app = Mock() |
| 390 | ip.pt_app.key_bindings = create_ipython_shortcuts(ip) |
| 391 | try: |
| 392 | yield ip |
| 393 | finally: |
| 394 | ip.pt_app = None |
| 395 | |
| 396 | |
| 397 | def find_bindings_by_command(command): |
nothing calls this directly
no test coverage detected
searching dependent graphs…