forked from python-openxml/python-docx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi-add-heading.feature
More file actions
28 lines (25 loc) · 1.1 KB
/
api-add-heading.feature
File metadata and controls
28 lines (25 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Feature: Add a section heading with text
In order add a section heading to a document
As a programmer using the basic python-docx API
I need a method to add a heading with its text in a single step
Scenario: Add a heading specifying only its text
Given a document
When I add a heading specifying only its text
Then the style of the last paragraph is 'Heading1'
And the last paragraph contains the heading text
Scenario Outline: Add a heading specifying level
Given a document
When I add a heading specifying level=<heading level>
Then the style of the last paragraph is '<paragraph style>'
Examples: Heading level styles
| heading level | paragraph style |
| 0 | Title |
| 1 | Heading1 |
| 2 | Heading2 |
| 3 | Heading3 |
| 4 | Heading4 |
| 5 | Heading5 |
| 6 | Heading6 |
| 7 | Heading7 |
| 8 | Heading8 |
| 9 | Heading9 |