##// END OF EJS Templates
Improve timeit message to fix ambuiguity....
Improve timeit message to fix ambuiguity. 10 loops, best of 7 is a bit ambiguous, be clearer about what is meant. Closes #10359

File last commit:

r21515:2c9013e4
r23496:6bdf956e
Show More
test_shimmodule.py
15 lines | 417 B | text/x-python | PythonLexer
Min RK
add ShimWarning for shimmed imports...
r21515 import sys
import warnings
import nose.tools as nt
from IPython.utils.capture import capture_output
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)