##// END OF EJS Templates
allow splitting and merging of heading cells...
allow splitting and merging of heading cells I consider it a bug that you couldn't merge with heading cells, and that you couldn't split them, either. (So much so that I thought it was a bug in ipython-vimception when I ran into it). This change removes that limitation, so heading cells are on par with the other cells in terms of the kinds of manipulations one can carry out with them.

File last commit:

r13691:d18be243
r17417:811c7332
Show More
test_stdout.py
53 lines | 1.5 KiB | text/x-python | PythonLexer
Thomas Kluyver
Use unicode_std_stream in nbconvert stdout writer...
r13691 # coding: utf-8
Jonathan Frederic
Added stdout writer tests
r12043 """
Module with tests for stdout
"""
#-----------------------------------------------------------------------------
# Copyright (c) 2013, the IPython Development Team.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file COPYING.txt, distributed with this software.
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
import sys
from ...tests.base import TestsBase
from ..stdout import StdoutWriter
Thomas Kluyver
Use StringIO.StringIO on Python 2....
r13366 from IPython.utils.py3compat import PY3
if PY3:
from io import StringIO
else:
from StringIO import StringIO
Jonathan Frederic
Added stdout writer tests
r12043
#-----------------------------------------------------------------------------
# Class
#-----------------------------------------------------------------------------
class TestStdout(TestsBase):
"""Contains test functions for stdout.py"""
def test_output(self):
"""Test stdout writer output."""
# Capture the stdout. Remember original.
stdout = sys.stdout
stream = StringIO()
sys.stdout = stream
# Create stdout writer, test output
writer = StdoutWriter()
Thomas Kluyver
Use unicode_std_stream in nbconvert stdout writer...
r13691 writer.write(u'a×', {'b': 'c'})
Jonathan Frederic
Added stdout writer tests
r12043 output = stream.getvalue()
Thomas Kluyver
Use unicode_std_stream in nbconvert stdout writer...
r13691 if not PY3:
output = output.decode('utf-8')
self.fuzzy_compare(output, u'a×')
Jonathan Frederic
Added stdout writer tests
r12043
# Revert stdout
sys.stdout = stdout