Sha256: 91baae8a0aa8a86255c5fcbe1b5b46e57945581fde6047ac2aa14cbb296e26e1

Contents?: true

Size: 1.93 KB

Versions: 23

Compression:

Stored size: 1.93 KB

Contents

# File: demo03.feature

Feature: Show the use of a basic macro with multiple arguments
  As a Cuke user
  So that I enjoy writing scenario.


Scenario: defining basic macro with multiple arguments
  # The next step creates a macro(-step)double quotes.
  # The steps to execute when the macro is used/invoked are listed in the multiline triple quotes arguments.
  # The macro-step arguments are put between chevrons <...>.
  Given I define the step "When I [enter my userid <userid> and password <password>]" to mean:
  """
  Given I landed in the homepage
  When I click "Sign in"
  And I fill in "Username" with "<userid>"
  And I fill in "Password" with "<password>"
  And I click "Submit"
  """

Scenario: Let's use the macro we created above
  # Here the macro is invoked. Actual value for the argument is put between double quotes.
  When I [enter my userid "guest" and password "unguessable"]

  # The next step verifies that the steps from the macro were effectively executed.
  Then I expect the following step trace:
  """
Invoked step: ... I landed in the homepage
Invoked step: ... I click "Sign in"
Invoked step: ... I fill in "Username" with "guest"
Invoked step: ... I fill in "Password" with "unguessable"
Invoked step: ... I click "Submit"
  """

Scenario: A macro invoking another macro (YES, it's possible!)
  Given I define the step "When I [enter my credentials]" to mean:
  """
  # Notice that the next step is invoking the first macro above
  When I [enter my userid "guest" and password "unguessable"]
  """

  # Invoking our lastly-created macro
  When I [enter my credentials]

  # Check that the nested macro still works
  Then I expect the following step trace:
  """
Invoked step: ... I landed in the homepage
Invoked step: ... I click "Sign in"
Invoked step: ... I fill in "Username" with "guest"
Invoked step: ... I fill in "Password" with "unguessable"
Invoked step: ... I click "Submit"
  """

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
macros4cuke-0.3.00 features/demo03.feature
macros4cuke-0.2.22 features/demo03.feature
macros4cuke-0.2.21 features/demo03.feature
macros4cuke-0.2.20 features/demo03.feature
macros4cuke-0.2.19 features/demo03.feature
macros4cuke-0.2.18 features/demo03.feature
macros4cuke-0.2.17 features/demo03.feature
macros4cuke-0.2.16 features/demo03.feature
macros4cuke-0.2.15 features/demo03.feature
macros4cuke-0.2.14 features/demo03.feature
macros4cuke-0.2.13 features/demo03.feature
macros4cuke-0.2.12 features/demo03.feature
macros4cuke-0.2.11 features/demo03.feature
macros4cuke-0.2.10 features/demo03.feature
macros4cuke-0.2.09 features/demo03.feature
macros4cuke-0.2.08 features/demo03.feature
macros4cuke-0.2.07 features/demo03.feature
macros4cuke-0.2.06 features/demo03.feature
macros4cuke-0.2.05 features/demo03.feature
macros4cuke-0.2.04 features/demo03.feature