##// END OF EJS Templates
Merge pull request #13290 from fasiha/sphinxify-contextual-help...
Merge pull request #13290 from fasiha/sphinxify-contextual-help Use sphinxify (if available) in object_inspect_mime path

File last commit:

r27078:d71d4265
r27096:38c7394b merge
Show More
test_shimmodule.py
14 lines | 302 B | text/x-python | PythonLexer
Nikita Kniazev
Make test_shim_warning not fail on unrelated warnings
r26999 import pytest
Min RK
add ShimWarning for shimmed imports...
r21515 import sys
from IPython.utils.shimmodule import ShimWarning
Srinivas Reddy Thatiparthy
remove unused imports
r23701
Min RK
add ShimWarning for shimmed imports...
r21515 def test_shim_warning():
sys.modules.pop('IPython.config', None)
Nikita Kniazev
Make test_shim_warning not fail on unrelated warnings
r26999 with pytest.warns(ShimWarning):
Min RK
add ShimWarning for shimmed imports...
r21515 import IPython.config
Nikita Kniazev
ShimImporter: implement modern interface
r27078
import traitlets.config
assert IPython.config.Config is traitlets.config.Config