##// END OF EJS Templates
Merged Gael's ipython-sync-frontend branch with important mods....
Merged Gael's ipython-sync-frontend branch with important mods. This branch showed conflicts with recent changes I made to: IPython.kernel.core.interpreter IPython.kernel.core.tests.test_interpreter I resolved these conflicts and closed a ticket that Gael fixed in his branch. BUT, there is a related ticket that I opened. Furthermore, Gael was using nose in test_interpreter, but we need to keep things in IPython.kernel free of nose!

File last commit:

r1333:933b1e98
r1949:a093b34b merge
Show More
test_tools_utils.txt
17 lines | 542 B | text/plain | TextLexer
/ IPython / tools / tests / test_tools_utils.txt
Brian E Granger
This is a manual merge of certain things in the ipython1-dev branch, revision 46, into the main ...
r1234 =========================================
Doctests for the ``tools.utils`` module
=========================================
The way doctest loads these, the entire document is applied as a single test
Fernando Perez
More testing cleanup...
r1333 rather than multiple individual ones, unfortunately::
Brian E Granger
This is a manual merge of certain things in the ipython1-dev branch, revision 46, into the main ...
r1234
>>> from IPython.tools import utils
Fernando Perez
More testing cleanup...
r1333
Brian E Granger
This is a manual merge of certain things in the ipython1-dev branch, revision 46, into the main ...
r1234 # Some other tests for utils
Fernando Perez
More testing cleanup...
r1333
Brian E Granger
This is a manual merge of certain things in the ipython1-dev branch, revision 46, into the main ...
r1234 >>> utils.marquee('Testing marquee')
'****************************** Testing marquee ******************************'
Fernando Perez
More testing cleanup...
r1333
Brian E Granger
This is a manual merge of certain things in the ipython1-dev branch, revision 46, into the main ...
r1234 >>> utils.marquee('Another test',30,'.')
'........ Another test ........'