test_slides.py
47 lines
| 1.5 KiB
| text/x-python
|
PythonLexer
Jonathan Frederic
|
r11744 | """ | ||
Module with tests for slides.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 | ||||
from ..slides import SlidesExporter | ||||
#----------------------------------------------------------------------------- | ||||
# Class | ||||
#----------------------------------------------------------------------------- | ||||
class TestSlidesExporter(ExportersTestsBase): | ||||
"""Contains test functions for slides.py""" | ||||
def test_constructor(self): | ||||
""" | ||||
Can a SlidesExporter be constructed? | ||||
""" | ||||
SlidesExporter() | ||||
def test_export(self): | ||||
""" | ||||
Can a SlidesExporter export something? | ||||
""" | ||||
(output, resources) = SlidesExporter().from_filename(self._get_notebook()) | ||||
assert len(output) > 0 | ||||
def test_export_reveal(self): | ||||
""" | ||||
Jonathan Frederic
|
r11745 | Can a SlidesExporter export using the 'reveal' template? | ||
Jonathan Frederic
|
r11744 | """ | ||
Jonathan Frederic
|
r11745 | (output, resources) = SlidesExporter(template='reveal').from_filename(self._get_notebook()) | ||
Jonathan Frederic
|
r11744 | assert len(output) > 0 | ||