##// END OF EJS Templates
Merge pull request #3734 from jdfreder/file_subdir...
Merge pull request #3734 from jdfreder/file_subdir Nbconvert: Export extracted files into `nbname_files` subdirectory Default build directory changed to . Files extracted from notebook now are placed into a ./notebook_files/ directory by default Spaces added between # symbols and comments It may be best to look at the diffs of the individual commits... The addition of spaces in the comments makes the overall diff hard to read.

File last commit:

r11494:82b9232c
r11642:321025c8 merge
Show More
test_sphinx_howto.py
38 lines | 1.3 KiB | text/x-python | PythonLexer
"""
Module with tests for sphinx_howto.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 ..sphinx_howto import SphinxHowtoExporter
#-----------------------------------------------------------------------------
# Class
#-----------------------------------------------------------------------------
class TestSphinxHowtoExporter(ExportersTestsBase):
"""Contains test functions for sphinx_howto.py"""
def test_constructor(self):
"""
Can a SphinxHowtoExporter be constructed?
"""
SphinxHowtoExporter()
def test_export(self):
"""
Can a SphinxHowtoExporter export something?
"""
(output, resources) = SphinxHowtoExporter().from_filename(self._get_notebook())
assert len(output) > 0