##// END OF EJS Templates
Added ability to export to a 'custom' format,...
Added ability to export to a 'custom' format, exposing the Exporter class

File last commit:

r11740:7eeb476d
r11743:70c22626
Show More
test_html.py
63 lines | 2.0 KiB | text/x-python | PythonLexer
Jonathan Frederic
Added exporter tests
r11480 """
Module with tests for basichtml.py
"""
#-----------------------------------------------------------------------------
# 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
#-----------------------------------------------------------------------------
from .base import ExportersTestsBase
Jonathan Frederic
Fixed tests
r11740 from ..html import HTMLExporter
Paul Ivanov
skip tests that require pandoc
r11714 from IPython.testing.decorators import onlyif_cmds_exist
Jonathan Frederic
Added exporter tests
r11480
#-----------------------------------------------------------------------------
# Class
#-----------------------------------------------------------------------------
Jonathan Frederic
Fixed tests
r11740 class TestHTMLExporter(ExportersTestsBase):
Jonathan Frederic
Added exporter tests
r11480 """Contains test functions for basichtml.py"""
def test_constructor(self):
"""
Jonathan Frederic
Fixed tests
r11740 Can a HTMLExporter be constructed?
Jonathan Frederic
Added exporter tests
r11480 """
Jonathan Frederic
Fixed tests
r11740 HTMLExporter()
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
Fixed tests
r11740 Can a HTMLExporter export something?
Jonathan Frederic
Added exporter tests
r11480 """
Jonathan Frederic
Fixed tests
r11740 (output, resources) = HTMLExporter().from_filename(self._get_notebook())
Paul Ivanov
skip tests that require pandoc
r11714 assert len(output) > 0
Jonathan Frederic
Updated tests to try flavors
r11738
def test_export_basic(self):
"""
Jonathan Frederic
Fixed tests
r11740 Can a HTMLExporter export using the 'basic' flavor?
Jonathan Frederic
Updated tests to try flavors
r11738 """
Jonathan Frederic
Fixed tests
r11740 (output, resources) = HTMLExporter(flavor='basic').from_filename(self._get_notebook())
Jonathan Frederic
Updated tests to try flavors
r11738 assert len(output) > 0
def test_export_full(self):
"""
Jonathan Frederic
Fixed tests
r11740 Can a HTMLExporter export using the 'full' flavor?
Jonathan Frederic
Updated tests to try flavors
r11738 """
Jonathan Frederic
Fixed tests
r11740 (output, resources) = HTMLExporter(flavor='full').from_filename(self._get_notebook())
Jonathan Frederic
Updated tests to try flavors
r11738 assert len(output) > 0
def test_export_reveal(self):
"""
Jonathan Frederic
Fixed tests
r11740 Can a HTMLExporter export using the 'reveal' flavor?
Jonathan Frederic
Updated tests to try flavors
r11738 """
Jonathan Frederic
Fixed tests
r11740 (output, resources) = HTMLExporter(flavor='reveal').from_filename(self._get_notebook())
Jonathan Frederic
Updated tests to try flavors
r11738 assert len(output) > 0