##// END OF EJS Templates
Merge branch 'kd2718/os_scandir_prep' of github.com:kd2718/ipython into kd2718/os_scandir_prep
Merge branch 'kd2718/os_scandir_prep' of github.com:kd2718/ipython into kd2718/os_scandir_prep

File last commit:

r23701:bf225856
r24686:0e555a81 merge
Show More
test_shimmodule.py
13 lines | 344 B | text/x-python | PythonLexer
Min RK
add ShimWarning for shimmed imports...
r21515 import sys
import warnings
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)
with warnings.catch_warnings(record=True) as w:
warnings.simplefilter("always")
import IPython.config
assert len(w) == 1
assert issubclass(w[-1].category, ShimWarning)