test_imports.py
38 lines
| 882 B
| text/x-python
|
PythonLexer
Brian Granger
|
r2011 | #!/usr/bin/env python | ||
# encoding: utf-8 | ||||
def test_import_coloransi(): | ||||
from IPython.utils import coloransi | ||||
Brian Granger
|
r2018 | def test_import_DPyGetOpt(): | ||
from IPython.utils import DPyGetOpt | ||||
Brian Granger
|
r2022 | def test_import_generics(): | ||
from IPython.utils import generics | ||||
Brian Granger
|
r2023 | def test_import_genutils(): | ||
from IPython.utils import genutils | ||||
Brian Granger
|
r2030 | def test_import_ipstruct(): | ||
from IPython.utils import ipstruct | ||||
Brian Granger
|
r2023 | |||
Brian Granger
|
r2039 | def test_import_platutils(): | ||
from IPython.utils import platutils | ||||
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 | |||
def test_import_winconsole(): | ||||
from IPython.utils import winconsole | ||||