Sha256: 2eaa85bf2a9992034a9cd4f685478b3e4401ce27d3d247cae079f2504ac8a126

Contents?: true

Size: 628 Bytes

Versions: 43

Compression:

Stored size: 628 Bytes

Contents

# File: multiline.feature

Feature: Show how to use multiline text inside macros
  As a Cuke user
  So that I enjoy writing scenario.


Scenario: Using a step with multiline text argument
  When I visit the cities:
  """
  Amsterdam
  Brussels
  Copenhagen
  """

Scenario: Definition of macro-step having a substep with multiline text
  Given I define the step "* I [make a long journey from <origin> to <destination>]" to mean:
  """
  When I visit the cities:
  <quotes>
  <origin>
  Amsterdam
  Brussels
  Copenhagen
  <destination>
  <quotes>
  """

  # Now use it...
  When I [make a long journey from "London" to "Oslo"]

Version data entries

43 entries across 43 versions & 1 rubygems

Version Path
macros4cuke-0.3.22 examples/demo/features/multiline.feature
macros4cuke-0.3.21 examples/demo/features/multiline.feature
macros4cuke-0.3.20 examples/demo/features/multiline.feature