##// END OF EJS Templates
Merge pull request #13042 from meeseeksmachine/auto-backport-of-pr-13037-on-7.x...
Merge pull request #13042 from meeseeksmachine/auto-backport-of-pr-13037-on-7.x Backport PR #13037 on branch 7.x (docs/source/whatsnew/version7.rst: Fix typo)

File last commit:

r23701:bf225856
r26622:e080978c merge
Show More
test_shimmodule.py
13 lines | 344 B | text/x-python | PythonLexer
import sys
import warnings
from IPython.utils.shimmodule import ShimWarning
def test_shim_warning():
sys.modules.pop('IPython.config', None)
with warnings.catch_warnings(record=True) as w:
warnings.simplefilter("always")
import IPython.config
assert len(w) == 1
assert issubclass(w[-1].category, ShimWarning)