diff --git a/tests/test_blurb.py b/tests/test_blurb.py index caf0f4e..2b8cb4e 100644 --- a/tests/test_blurb.py +++ b/tests/test_blurb.py @@ -9,6 +9,22 @@ ) +def test_section_names(): + assert tuple(blurb.sections) == ( + 'Security', + 'Core and Builtins', + 'Library', + 'Documentation', + 'Tests', + 'Build', + 'Windows', + 'macOS', + 'IDLE', + 'Tools/Demos', + 'C API', + ) + + @pytest.mark.parametrize("section", UNCHANGED_SECTIONS) def test_sanitize_section_no_change(section): sanitized = blurb.sanitize_section(section)