summaryrefslogtreecommitdiff
path: root/tests/test_build_html.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_build_html.py')
-rw-r--r--tests/test_build_html.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_build_html.py b/tests/test_build_html.py
index 173ad6cf5..78ef1770c 100644
--- a/tests/test_build_html.py
+++ b/tests/test_build_html.py
@@ -987,6 +987,8 @@ def test_html_extra_path(app, status, warning):
assert (app.outdir / 'rimg.png').exists()
assert not (app.outdir / '_build/index.html').exists()
assert (app.outdir / 'background.png').exists()
+ assert (app.outdir / 'subdir' / '.htaccess').exists()
+ assert not (app.outdir / 'subdir' / '.htpasswd').exists()
@with_app(buildername='html', confoverrides={'html_sourcelink_suffix': ''})