Repository URL to install this package:
|
Version:
0.8.10 ▾
|
Feature: Open a document
In order work on a document
As a developer using python-docx
I need a way to open a document
Scenario: Open a specified document
Given I have python-docx installed
When I call docx.Document() with the path of a .docx file
Then document is a Document object
Scenario: Open the default document
Given I have python-docx installed
When I call docx.Document() with no arguments
Then document is a Document object