()
| 1565 | |
| 1566 | |
| 1567 | def test_script_defaults(): |
| 1568 | ip = get_ipython() |
| 1569 | for cmd in ["sh", "bash", "perl", "ruby"]: |
| 1570 | try: |
| 1571 | find_cmd(cmd) |
| 1572 | except Exception: |
| 1573 | pass |
| 1574 | else: |
| 1575 | assert cmd in ip.magics_manager.magics["cell"] |
| 1576 | |
| 1577 | |
| 1578 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected
searching dependent graphs…