##// END OF EJS Templates
Backport PR #7933: Move dynamic buttons to the left and upload button to the right....
Backport PR #7933: Move dynamic buttons to the left and upload button to the right. Requested by @ellisonbg . Before: ![old](https://cloud.githubusercontent.com/assets/3292874/6454809/aa541ee4-c101-11e4-979f-707df477cdc2.PNG) ...

File last commit:

r7875:2549896b
r20875:8a947555
Show More
test_pycolorize.py
34 lines | 1000 B | text/x-python | PythonLexer
"""Test suite for our color utilities.
Authors
-------
* Min RK
"""
#-----------------------------------------------------------------------------
# Copyright (C) 2011 The IPython Development Team
#
# Distributed under the terms of the BSD License. The full license is in
# the file COPYING.txt, distributed as part of this software.
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
# third party
import nose.tools as nt
# our own
from IPython.utils.PyColorize import Parser
#-----------------------------------------------------------------------------
# Test functions
#-----------------------------------------------------------------------------
def test_unicode_colorize():
p = Parser()
f1 = p.format('1/0', 'str')
f2 = p.format(u'1/0', 'str')
nt.assert_equal(f1, f2)