We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7ea718 commit 18430e8Copy full SHA for 18430e8
1 file changed
tests/test_blurb.py
@@ -9,6 +9,22 @@
9
)
10
11
12
+def test_section_names():
13
+ assert tuple(blurb.sections) == (
14
+ 'Security',
15
+ 'Core and Builtins',
16
+ 'Library',
17
+ 'Documentation',
18
+ 'Tests',
19
+ 'Build',
20
+ 'Windows',
21
+ 'macOS',
22
+ 'IDLE',
23
+ 'Tools/Demos',
24
+ 'C API',
25
+ )
26
+
27
28
@pytest.mark.parametrize("section", UNCHANGED_SECTIONS)
29
def test_sanitize_section_no_change(section):
30
sanitized = blurb.sanitize_section(section)
0 commit comments