We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27fcb51 commit c2f4185Copy full SHA for c2f4185
2 files changed
tests/test_blurb.py
@@ -9,22 +9,6 @@
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)
tests/test_template.py
@@ -0,0 +1,17 @@
1
+import blurb._template
2
+
3
4
+def test_section_names():
5
+ assert tuple(blurb._template.sections) == (
6
+ 'Security',
7
+ 'Core and Builtins',
8
+ 'Library',
+ 'Documentation',
+ 'Tests',
+ 'Build',
+ 'Windows',
+ 'macOS',
+ 'IDLE',
+ 'Tools/Demos',
+ 'C API',
+ )
0 commit comments