()
| 1000 | ip.user_ns['error'].close() |
| 1001 | |
| 1002 | def test_script_defaults(): |
| 1003 | ip = get_ipython() |
| 1004 | for cmd in ['sh', 'bash', 'perl', 'ruby']: |
| 1005 | try: |
| 1006 | find_cmd(cmd) |
| 1007 | except Exception: |
| 1008 | pass |
| 1009 | else: |
| 1010 | nt.assert_in(cmd, ip.magics_manager.magics['cell']) |
| 1011 | |
| 1012 | |
| 1013 | @magics_class |
nothing calls this directly
no test coverage detected