()
| 958 | |
| 959 | @dec.skip_win32 |
| 960 | def test_script_out(): |
| 961 | ip = get_ipython() |
| 962 | ip.run_cell_magic("script", "--out output sh", "echo 'hi'") |
| 963 | nt.assert_equal(ip.user_ns['output'], 'hi\n') |
| 964 | |
| 965 | @dec.skip_win32 |
| 966 | def test_script_err(): |
nothing calls this directly
no test coverage detected