test_imports.py
53 lines
| 1.1 KiB
| text/x-python
|
PythonLexer
Brian Granger
|
r2012 | #!/usr/bin/env python | ||
# 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
|
r2032 | def test_import_iplib(): | ||
Brian Granger
|
r2028 | from IPython.core import iplib | ||
Brian Granger
|
r2032 | def test_import_ipmaker(): | ||
Brian Granger
|
r2029 | from IPython.core import ipmaker | ||
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
|
r2038 | def test_import_outputtrap(): | ||
from IPython.core import outputtrap | ||||
Brian Granger
|
r2037 | |||
Brian Granger
|
r2040 | def test_import_prefilter(): | ||
from IPython.core import prefilter | ||||
def test_import_prompts(): | ||||
from IPython.core import prompts | ||||