##// END OF EJS Templates
Merge pull request #6045 from minrk/nbformat4...
Merge pull request #6045 from minrk/nbformat4 nbformat v4

File last commit:

r18605:9867311c
r18617:482c7bd6 merge
Show More
test_rst.py
54 lines | 1.5 KiB | text/x-python | PythonLexer
MinRK
test raw cell inclusion based on raw_format metadata
r13665 """Tests for RSTExporter"""
Jonathan Frederic
Added exporter tests
r11480
MinRK
Don't use nbformat.current in nbconvert
r18605 # Copyright (c) IPython Development Team.
Jonathan Frederic
Added exporter tests
r11480 # Distributed under the terms of the Modified BSD License.
MinRK
test rst export with empty code cells
r16008 import io
MinRK
Don't use nbformat.current in nbconvert
r18605 from IPython import nbformat
from IPython.nbformat import v4
MinRK
test rst export with empty code cells
r16008
Jonathan Frederic
Added exporter tests
r11480 from .base import ExportersTestsBase
Jonathan Frederic
RST capitalization fix
r11492 from ..rst import RSTExporter
Paul Ivanov
skip tests that require pandoc
r11714 from IPython.testing.decorators import onlyif_cmds_exist
Jonathan Frederic
Added exporter tests
r11480
Jonathan Frederic
s/Test_/Test
r11494 class TestRSTExporter(ExportersTestsBase):
MinRK
test raw cell inclusion based on raw_format metadata
r13665 """Tests for RSTExporter"""
exporter_class = RSTExporter
should_include_raw = ['rst']
Jonathan Frederic
Added exporter tests
r11480
def test_constructor(self):
"""
Jonathan Frederic
RST capitalization fix
r11492 Can a RSTExporter be constructed?
Jonathan Frederic
Added exporter tests
r11480 """
Jonathan Frederic
RST capitalization fix
r11492 RSTExporter()
Jonathan Frederic
Added exporter tests
r11480
Paul Ivanov
skip tests that require pandoc
r11714 @onlyif_cmds_exist('pandoc')
Jonathan Frederic
Added exporter tests
r11480 def test_export(self):
"""
Jonathan Frederic
RST capitalization fix
r11492 Can a RSTExporter export something?
Jonathan Frederic
Added exporter tests
r11480 """
Jonathan Frederic
RST capitalization fix
r11492 (output, resources) = RSTExporter().from_filename(self._get_notebook())
Paul Ivanov
skip tests that require pandoc
r11714 assert len(output) > 0
MinRK
test rst export with empty code cells
r16008
@onlyif_cmds_exist('pandoc')
def test_empty_code_cell(self):
"""No empty code cells in rst"""
nbname = self._get_notebook()
with io.open(nbname, encoding='utf8') as f:
MinRK
Don't use nbformat.current in nbconvert
r18605 nb = nbformat.read(f, 4)
MinRK
test rst export with empty code cells
r16008
exporter = self.exporter_class()
(output, resources) = exporter.from_notebook_node(nb)
# add an empty code cell
MinRK
update nbconvert to nbformat 4
r18580 nb.cells.append(
MinRK
Don't use nbformat.current in nbconvert
r18605 v4.new_code_cell(source="")
MinRK
test rst export with empty code cells
r16008 )
(output2, resources) = exporter.from_notebook_node(nb)
# adding an empty code cell shouldn't change output
self.assertEqual(output.strip(), output2.strip())