()
| 977 | |
| 978 | @dec.skip_win32 |
| 979 | def test_script_bg_out(): |
| 980 | ip = get_ipython() |
| 981 | ip.run_cell_magic("script", "--bg --out output sh", "echo 'hi'") |
| 982 | |
| 983 | nt.assert_equal(ip.user_ns['output'].read(), b'hi\n') |
| 984 | ip.user_ns['output'].close() |
| 985 | |
| 986 | @dec.skip_win32 |
| 987 | def test_script_bg_err(): |
nothing calls this directly
no test coverage detected