##// END OF EJS Templates
Add failing test: columnize called with very long entries....
Fernando Perez -
Show More
@@ -0,0 +1,30 b''
1 # encoding: utf-8
2 """Tests for IPython.utils.text"""
3
4 #-----------------------------------------------------------------------------
5 # Copyright (C) 2011 The IPython Development Team
6 #
7 # Distributed under the terms of the BSD License. The full license is in
8 # the file COPYING, distributed as part of this software.
9 #-----------------------------------------------------------------------------
10
11 #-----------------------------------------------------------------------------
12 # Imports
13 #-----------------------------------------------------------------------------
14
15 import os
16
17 import nose.tools as nt
18
19 from nose import with_setup
20
21 from IPython.testing import decorators as dec
22 from IPython.utils import text
23
24 #-----------------------------------------------------------------------------
25 # Globals
26 #-----------------------------------------------------------------------------
27
28 def test_columnize():
29 """Test columnize with very long inputs"""
30 text.columnize(['a'*180, 'b'*180])
General Comments 0
You need to be logged in to leave comments. Login now