test that config magic does not raise can happen if Configurable init is moved too early into Magics.__init__ as then a Config object will be registered as a magic.
()
| 122 | |
| 123 | |
| 124 | def test_config(): |
| 125 | """test that config magic does not raise |
| 126 | can happen if Configurable init is moved too early into |
| 127 | Magics.__init__ as then a Config object will be registered as a |
| 128 | magic. |
| 129 | """ |
| 130 | ## should not raise. |
| 131 | _ip.run_line_magic("config", "") |
| 132 | |
| 133 | |
| 134 | def test_config_available_configs(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…