Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
python-docx / features / api-open-document.feature
Size: Mime:
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