##// END OF EJS Templates
Backport PR #6005: Changed right arrow key movement function to mirror left arrow key...
Backport PR #6005: Changed right arrow key movement function to mirror left arrow key Seems to solve Issue #5926 on this machine, and passing the test file locally. Changed from `cursor.movePosition` to `self._control.moveCursor`, the latter is what the left-arrow key uses. Also removed line 1373 which seems unnecessary and which prevents the cursor from moving at all. I'm not certain how to further test this to make sure nothing was broken.

File last commit:

r15439:37fe6ef6
r17151:477b3912
Show More
base.py
54 lines | 2.0 KiB | text/x-python | PythonLexer
MinRK
test raw cell inclusion based on raw_format metadata
r13665 """Base TestCase class for testing Exporters"""
Jonathan Frederic
Added exporter tests
r11480
#-----------------------------------------------------------------------------
# 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 os
MinRK
run html nbconvert tests if node or pandoc is available
r15439 from IPython.testing.decorators import onlyif_any_cmd_exists
MinRK
test raw cell inclusion based on raw_format metadata
r13665
Jonathan Frederic
Added exporter tests
r11480 from ...tests.base import TestsBase
#-----------------------------------------------------------------------------
# Class
#-----------------------------------------------------------------------------
MinRK
propagate raw_mimetype to nbconvert
r13678 all_raw_mimetypes = {
Thomas Kluyver
Condense raw_mimetype and mime_type traitlets into output_mimetype
r13832 'text/x-python',
MinRK
propagate raw_mimetype to nbconvert
r13678 'text/markdown',
'text/html',
'text/restructuredtext',
'text/latex',
}
MinRK
test raw cell inclusion based on raw_format metadata
r13665
Jonathan Frederic
Added exporter tests
r11480 class ExportersTestsBase(TestsBase):
"""Contains base test functions for exporters"""
MinRK
test raw cell inclusion based on raw_format metadata
r13665
exporter_class = None
should_include_raw = None
def _get_notebook(self, nb_name='notebook2.ipynb'):
return os.path.join(self._get_files_path(), nb_name)
MinRK
run html nbconvert tests if node or pandoc is available
r15439 @onlyif_any_cmd_exists('nodejs', 'node', 'pandoc')
MinRK
test raw cell inclusion based on raw_format metadata
r13665 def test_raw_cell_inclusion(self):
MinRK
propagate raw_mimetype to nbconvert
r13678 """test raw cell inclusion based on raw_mimetype metadata"""
MinRK
test raw cell inclusion based on raw_format metadata
r13665 if self.should_include_raw is None:
return
exporter = self.exporter_class()
(output, resources) = exporter.from_filename(self._get_notebook('rawtest.ipynb'))
for inc in self.should_include_raw:
self.assertIn('raw %s' % inc, output, "should include %s" % inc)
MinRK
propagate raw_mimetype to nbconvert
r13678 self.assertIn('no raw_mimetype metadata', output)
for exc in all_raw_mimetypes.difference(self.should_include_raw):
MinRK
test raw cell inclusion based on raw_format metadata
r13665 self.assertNotIn('raw %s' % exc, output, "should exclude %s" % exc)
self.assertNotIn('never be included', output)