sphinx/tests/test_ext_duration.py

16 lines
379 B
Python
Raw Normal View History

2022-02-19 18:06:24 -06:00
"""Test sphinx.ext.duration extension.
"""
import re
import pytest
@pytest.mark.sphinx('dummy', testroot='basic',
confoverrides={'extensions': ['sphinx.ext.duration']})
def test_githubpages(app, status, warning):
app.build()
assert 'slowest reading durations' in status.getvalue()
assert re.search('\\d+\\.\\d{3} index\n', status.getvalue())