##// END OF EJS Templates
Fixing small bugs for the release....
Fixing small bugs for the release. * Fixing imports in tests when deps are not present. * Removed shell.py and test_shell.py as they are old. * Adding notes about installation and testing.

File last commit:

r1333:933b1e98
r1551:d8f2aac4
Show More
test_tools_utils.txt
17 lines | 542 B | text/plain | TextLexer
=========================================
Doctests for the ``tools.utils`` module
=========================================
The way doctest loads these, the entire document is applied as a single test
rather than multiple individual ones, unfortunately::
>>> from IPython.tools import utils
# Some other tests for utils
>>> utils.marquee('Testing marquee')
'****************************** Testing marquee ******************************'
>>> utils.marquee('Another test',30,'.')
'........ Another test ........'