##// END OF EJS Templates
inject config as `c` to config file directly...
inject config as `c` to config file directly get_config is not necessary, and removed from default config files. It remains, and will probably remain indefinitely for backward compatibility, so no deprecation warning.

File last commit:

r20734:d5e6ad2e
r20869:cde5f293
Show More
test_slides.py
36 lines | 970 B | text/x-python | PythonLexer
"""Tests for SlidesExporter"""
# Copyright (c) IPython Development Team.
# Distributed under the terms of the Modified BSD License.
from .base import ExportersTestsBase
from ..slides import SlidesExporter
class TestSlidesExporter(ExportersTestsBase):
"""Tests for SlidesExporter"""
exporter_class = SlidesExporter
should_include_raw = ['html']
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):
"""
Can a SlidesExporter export using the 'reveal' template?
"""
(output, resources) = SlidesExporter(template_file='slides_reveal').from_filename(self._get_notebook())
assert len(output) > 0