()
| 951 | nt.assert_in('line2', s) |
| 952 | |
| 953 | def test_script_config(): |
| 954 | ip = get_ipython() |
| 955 | ip.config.ScriptMagics.script_magics = ['whoda'] |
| 956 | sm = script.ScriptMagics(shell=ip) |
| 957 | nt.assert_in('whoda', sm.magics['cell']) |
| 958 | |
| 959 | @dec.skip_win32 |
| 960 | def test_script_out(): |
nothing calls this directly
no test coverage detected