mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
18 lines
364 B
Python
18 lines
364 B
Python
"""Test sphinx.ext.duration extension."""
|
|
|
|
import re
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.mark.sphinx(
|
|
'dummy',
|
|
testroot='basic',
|
|
confoverrides={'extensions': ['sphinx.ext.duration']},
|
|
)
|
|
def test_githubpages(app):
|
|
app.build()
|
|
|
|
assert 'slowest reading durations' in app.status.getvalue()
|
|
assert re.search('\\d+\\.\\d{3} index\n', app.status.getvalue())
|