mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
33 lines
911 B
Python
33 lines
911 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
test_build_htmlhelp
|
|
~~~~~~~~~~~~~~~~~~~
|
|
|
|
Test the HTML Help builder and check output against XPath.
|
|
|
|
:copyright: Copyright 2007-2018 by the Sphinx team, see AUTHORS.
|
|
:license: BSD, see LICENSE for details.
|
|
"""
|
|
|
|
import pytest
|
|
|
|
from sphinx.builders.htmlhelp import default_htmlhelp_basename
|
|
from sphinx.config import Config
|
|
|
|
|
|
@pytest.mark.sphinx('htmlhelp', testroot='basic')
|
|
def test_default_htmlhelp_file_suffix(app, warning):
|
|
assert app.builder.out_suffix == '.html'
|
|
|
|
|
|
@pytest.mark.sphinx('htmlhelp', testroot='basic',
|
|
confoverrides={'htmlhelp_file_suffix': '.htm'})
|
|
def test_htmlhelp_file_suffix(app, warning):
|
|
assert app.builder.out_suffix == '.htm'
|
|
|
|
|
|
def test_default_htmlhelp_basename():
|
|
config = Config({'project': 'Sphinx Documentation'})
|
|
config.init_values()
|
|
assert default_htmlhelp_basename(config) == 'sphinxdoc'
|