File tree Expand file tree Collapse file tree 1 file changed +1
-9
lines changed Expand file tree Collapse file tree 1 file changed +1
-9
lines changed Original file line number Diff line number Diff line change @@ -779,19 +779,11 @@ def test_deprecated_build_html(sphinx_build_factory, file_regression):
779
779
assert not sphinx_build .html_tree ("page2.html" ).select ("div.bd-sidebar-secondary" )
780
780
781
781
782
- def test_ablog (sphinx_build_factory ):
783
- """Ensure that we are over-riding the ABlog default FontAwesome config."""
784
-
785
- confoverrides = {"extensions" : ["ablog" ]}
786
- sphinx_build = sphinx_build_factory ("base" , confoverrides = confoverrides ).build ()
787
- assert sphinx_build .app .config .fontawesome_included is True
788
-
789
-
790
782
def test_empty_templates (sphinx_build_factory ):
791
783
"""If a template is empty (e.g., via a config), it should be removed."""
792
784
# When configured to be gone, the template should be removed w/ its parent.
793
785
# ABlog needs to be added so we can test that template rendering works w/ it.
794
- confoverrides = {"html_show_sourcelink" : False , "extensions" : [ "ablog" ] }
786
+ confoverrides = {"html_show_sourcelink" : False }
795
787
sphinx_build = sphinx_build_factory ("base" , confoverrides = confoverrides ).build ()
796
788
toc_items = sphinx_build .html_tree ("page1.html" ).select (".toc-item" )
797
789
assert not any (ii .select (".tocsection.sourcelink" ) for ii in toc_items )
You can’t perform that action at this time.
0 commit comments