Uploaded Test files
This commit is contained in:
parent
f584ad9d97
commit
2e81cb7d99
16627 changed files with 2065359 additions and 102444 deletions
|
@ -0,0 +1,13 @@
|
|||
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)
|
Loading…
Add table
Add a link
Reference in a new issue