Skip to content

Releases: makandra/cucumber_factory

Support multi line attribute assignment

26 Apr 07:09
Compare
Choose a tag to compare
  • Add support for doc string and data table

Example:

Feature: Cucumber factory test feature

  Scenario: Some example
    Given there is a user with the role "admin" and these attributes:
      | first name       | Jane  |
      | last name        | Jenny |
      | offer permission | false |

  Scenario: Some example
    Given there is a user with the role "admin" and these attributes:
      """
      first name: Jane
      last name: Jenny
      offer permission: false
      """

See README.md for more details.