forked from python-openxml/python-docx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparagraph.py
More file actions
50 lines (33 loc) · 1.19 KB
/
paragraph.py
File metadata and controls
50 lines (33 loc) · 1.19 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# encoding: utf-8
"""
Step implementations for paragraph-related features
"""
from behave import then, when
from docx import Document
from helpers import saved_docx_path, test_text
test_style = 'Heading1'
# when ====================================================
@when('I add a run to the paragraph')
def step_when_add_new_run_to_paragraph(context):
context.r = context.p.add_run()
@when('I add text to the run')
def step_when_add_new_text_to_run(context):
context.r.add_text(test_text)
@when('I set the paragraph style')
def step_when_set_paragraph_style(context):
context.p.add_run().add_text(test_text)
context.p.style = test_style
# then =====================================================
@then('the document contains the text I added')
def step_then_document_contains_text_I_added(context):
document = Document(saved_docx_path)
paragraphs = document.paragraphs
p = paragraphs[-1]
r = p.runs[0]
assert r.text == test_text
@then('the paragraph has the style I set')
def step_then_paragraph_has_the_style_I_set(context):
document = Document(saved_docx_path)
paragraphs = document.paragraphs
p = paragraphs[-1]
assert p.style == test_style