##// END OF EJS Templates
Tests in test_process were failing on Windows. I have create a ticket...
Tests in test_process were failing on Windows. I have create a ticket for this bug and for now have added a @skip decorator so the test is skipped.

File last commit:

r1333:933b1e98
r1616:28e12a4c
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 ........'