mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
18 lines
609 B
Python
18 lines
609 B
Python
|
"""Test image converter with identical basenames"""
|
||
|
|
||
|
import pytest
|
||
|
|
||
|
|
||
|
@pytest.mark.sphinx('latex', testroot='ext-imgmockconverter')
|
||
|
def test_ext_imgmockconverter(app, status, warning):
|
||
|
app.builder.build_all()
|
||
|
|
||
|
content = (app.outdir / 'python.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()
|