summaryrefslogtreecommitdiffstats
path: root/tests/test_extensions/test_ext_imgmockconverter.py
blob: 4c3c64e03c1da91cb9b3e7e353b388bb54561ac5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"""Test image converter with identical basenames"""

import pytest


@pytest.mark.sphinx('latex', testroot='ext-imgmockconverter')
def test_ext_imgmockconverter(app, status, warning):
    app.build(force_all=True)

    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()