(self)
| 506 | self.check_run_submodule('relative', '-d') |
| 507 | |
| 508 | def test_module_options(self): |
| 509 | _ip.user_ns.pop('a', None) |
| 510 | test_opts = '-x abc -m test' |
| 511 | _ip.run_line_magic('run', '-m {0}.args {1}'.format(self.package, test_opts)) |
| 512 | nt.assert_equal(_ip.user_ns['a'], test_opts) |
| 513 | |
| 514 | def test_module_options_with_separator(self): |
| 515 | _ip.user_ns.pop('a', None) |
nothing calls this directly
no test coverage detected