()
| 964 | |
| 965 | @dec.skip_win32 |
| 966 | def test_script_err(): |
| 967 | ip = get_ipython() |
| 968 | ip.run_cell_magic("script", "--err error sh", "echo 'hello' >&2") |
| 969 | nt.assert_equal(ip.user_ns['error'], 'hello\n') |
| 970 | |
| 971 | @dec.skip_win32 |
| 972 | def test_script_out_err(): |
nothing calls this directly
no test coverage detected