sphinx/tests/test_extensions/test_ext_imgmockconverter.py
2024-11-22 21:54:26 +00:00

20 lines
641 B
Python

"""Test image converter with identical basenames"""
from __future__ import annotations
import pytest
@pytest.mark.sphinx('latex', testroot='ext-imgmockconverter')
def test_ext_imgmockconverter(app):
app.build(force_all=True)
content = (app.outdir / 'projectnamenotset.tex').read_text(encoding='utf8')
# check identical basenames give distinct files
assert '\\sphinxincludegraphics{{svgimg}.pdf}' in content
assert '\\sphinxincludegraphics{{svgimg1}.pdf}' in content
assert not (app.outdir / 'svgimg.svg').exists()
assert (app.outdir / 'svgimg.pdf').exists()
assert (app.outdir / 'svgimg1.pdf').exists()