test_imports.py
26 lines
| 581 B
| text/x-python
|
PythonLexer
Brian Granger
|
r2011 | # encoding: utf-8 | ||
def test_import_coloransi(): | ||||
from IPython.utils import coloransi | ||||
Brian Granger
|
r2022 | def test_import_generics(): | ||
from IPython.utils import generics | ||||
Brian Granger
|
r2030 | def test_import_ipstruct(): | ||
from IPython.utils import ipstruct | ||||
Brian Granger
|
r2023 | |||
Brian Granger
|
r2042 | def test_import_PyColorize(): | ||
from IPython.utils import PyColorize | ||||
Brian Granger
|
r2044 | |||
def test_import_rlineimpl(): | ||||
Brian Granger
|
r2048 | from IPython.utils import rlineimpl | ||
def test_import_strdispatch(): | ||||
Brian Granger
|
r2049 | from IPython.utils import strdispatch | ||
def test_import_upgradedir(): | ||||
from IPython.utils import upgradedir | ||||
Brian Granger
|
r2051 | |||
def test_import_wildcard(): | ||||
from IPython.utils import wildcard | ||||
Brian Granger
|
r2052 | |||