()
| 985 | |
| 986 | @dec.skip_win32 |
| 987 | def test_script_bg_err(): |
| 988 | ip = get_ipython() |
| 989 | ip.run_cell_magic("script", "--bg --err error sh", "echo 'hello' >&2") |
| 990 | nt.assert_equal(ip.user_ns['error'].read(), b'hello\n') |
| 991 | ip.user_ns['error'].close() |
| 992 | |
| 993 | @dec.skip_win32 |
| 994 | def test_script_bg_out_err(): |
nothing calls this directly
no test coverage detected