-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
xfail: for BlockItemContainer.iter_inner_content()
- Loading branch information
Showing
3 changed files
with
78 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
Feature: Iterate paragraphs and tables in document-order | ||
In order to access paragraphs and tables in the same order they appear in the document | ||
As a developer using python-docx | ||
I need the ability to iterate the inner-content of a block-item-container | ||
|
||
|
||
@wip | ||
Scenario: Document.iter_inner_content() | ||
Given a Document object with paragraphs and tables | ||
Then document.iter_inner_content() produces the block-items in document order | ||
|
||
|
||
@wip | ||
Scenario: Header.iter_inner_content() | ||
Given a Header object with paragraphs and tables | ||
Then header.iter_inner_content() produces the block-items in document order | ||
|
||
|
||
@wip | ||
Scenario: Footer.iter_inner_content() | ||
Given a Footer object with paragraphs and tables | ||
Then footer.iter_inner_content() produces the block-items in document order | ||
|
||
|
||
@wip | ||
Scenario: _Cell.iter_inner_content() | ||
Given a _Cell object with paragraphs and tables | ||
Then cell.iter_inner_content() produces the block-items in document order |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.