test_html.py
59 lines
| 1.8 KiB
| text/x-python
|
PythonLexer
Jonathan Frederic
|
r11480 | """ | ||
Jonathan Frederic
|
r11744 | Module with tests for html.py | ||
Jonathan Frederic
|
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 | ||||
#----------------------------------------------------------------------------- | ||||
from .base import ExportersTestsBase | ||||
Jonathan Frederic
|
r11740 | from ..html import HTMLExporter | ||
Paul Ivanov
|
r11714 | from IPython.testing.decorators import onlyif_cmds_exist | ||
Jonathan Frederic
|
r11480 | |||
#----------------------------------------------------------------------------- | ||||
# Class | ||||
#----------------------------------------------------------------------------- | ||||
Jonathan Frederic
|
r11740 | class TestHTMLExporter(ExportersTestsBase): | ||
Jonathan Frederic
|
r11744 | """Contains test functions for html.py""" | ||
Jonathan Frederic
|
r11480 | |||
def test_constructor(self): | ||||
""" | ||||
Jonathan Frederic
|
r11740 | Can a HTMLExporter be constructed? | ||
Jonathan Frederic
|
r11480 | """ | ||
Jonathan Frederic
|
r11740 | HTMLExporter() | ||
Jonathan Frederic
|
r11480 | |||
Jonathan Frederic
|
r11749 | |||
Paul Ivanov
|
r11714 | @onlyif_cmds_exist('pandoc') | ||
Jonathan Frederic
|
r11480 | def test_export(self): | ||
""" | ||||
Jonathan Frederic
|
r11740 | Can a HTMLExporter export something? | ||
Jonathan Frederic
|
r11480 | """ | ||
Jonathan Frederic
|
r11740 | (output, resources) = HTMLExporter().from_filename(self._get_notebook()) | ||
Paul Ivanov
|
r11714 | assert len(output) > 0 | ||
Jonathan Frederic
|
r11738 | |||
Jonathan Frederic
|
r11749 | @onlyif_cmds_exist('pandoc') | ||
Jonathan Frederic
|
r11738 | def test_export_basic(self): | ||
""" | ||||
Jonathan Frederic
|
r11745 | Can a HTMLExporter export using the 'basic' template? | ||
Jonathan Frederic
|
r11738 | """ | ||
MinRK
|
r11852 | (output, resources) = HTMLExporter(template_file='basic').from_filename(self._get_notebook()) | ||
Jonathan Frederic
|
r11738 | assert len(output) > 0 | ||
Jonathan Frederic
|
r11749 | @onlyif_cmds_exist('pandoc') | ||
Jonathan Frederic
|
r11738 | def test_export_full(self): | ||
""" | ||||
Jonathan Frederic
|
r11745 | Can a HTMLExporter export using the 'full' template? | ||
Jonathan Frederic
|
r11738 | """ | ||
MinRK
|
r11852 | (output, resources) = HTMLExporter(template_file='full').from_filename(self._get_notebook()) | ||
Jonathan Frederic
|
r11738 | assert len(output) > 0 | ||