test_imports.py
58 lines
| 1.3 KiB
| text/x-python
|
PythonLexer
Brian Granger
|
r2012 | # encoding: utf-8 | ||
def test_import_completer(): | ||||
from IPython.core import completer | ||||
Brian Granger
|
r2014 | def test_import_crashhandler(): | ||
from IPython.core import crashhandler | ||||
Brian Granger
|
r2015 | |||
def test_import_debugger(): | ||||
Brian Granger
|
r2020 | from IPython.core import debugger | ||
def test_import_fakemodule(): | ||||
from IPython.core import fakemodule | ||||
Brian Granger
|
r2021 | def test_import_excolors(): | ||
from IPython.core import excolors | ||||
Brian Granger
|
r2026 | def test_import_history(): | ||
from IPython.core import history | ||||
def test_import_hooks(): | ||||
from IPython.core import hooks | ||||
Brian Granger
|
r2027 | def test_import_ipapi(): | ||
from IPython.core import ipapi | ||||
Brian Granger
|
r2760 | def test_import_interactiveshell(): | ||
from IPython.core import interactiveshell | ||||
Brian Granger
|
r2028 | |||
Brian Granger
|
r2032 | def test_import_logger(): | ||
from IPython.core import logger | ||||
Brian Granger
|
r2033 | def test_import_macro(): | ||
from IPython.core import macro | ||||
Brian Granger
|
r2026 | |||
Brian Granger
|
r2036 | def test_import_magic(): | ||
from IPython.core import magic | ||||
Brian Granger
|
r2026 | |||
Brian Granger
|
r2037 | def test_import_oinspect(): | ||
from IPython.core import oinspect | ||||
Brian Granger
|
r2040 | def test_import_prefilter(): | ||
from IPython.core import prefilter | ||||
def test_import_prompts(): | ||||
from IPython.core import prompts | ||||
Brian Granger
|
r2043 | |||
def test_import_release(): | ||||
Brian Granger
|
r2045 | from IPython.core import release | ||
def test_import_shadowns(): | ||||
from IPython.core import shadowns | ||||
Brian Granger
|
r2046 | |||
Brian Granger
|
r2048 | def test_import_ultratb(): | ||
from IPython.core import ultratb | ||||
Brian Granger
|
r2050 | |||
def test_import_usage(): | ||||
from IPython.core import usage | ||||