Feature: Background in rules
  The purpose of the Rule keyword is to represent one business rule that should be implemented.
  It provides additional information for a feature. A Rule is used to group together several
  scenarios that belong to this business rule. A Rule should contain one or more scenarios
  that illustrate the particular rule.

  Rule: Rule with 10 cucumbers

    Background:
      Given There are 10 cucumbers

    @id_571cef352a9193f43d6e64ce7ed24628e62e5d867291d4d92a895280eb103f85
    Scenario: 5 cucumbers
      When I eat 5 cucumbers
      Then I should have 5 cucumbers

    @id_2f437d963a6364214611204427f3e279daba25f6c75d49946a71b9678145198f
    Scenario: 10 cucumbers
      When I eat 10 cucumbers
      Then I should have 0 cucumbers

  Rule: Rule with 100 cucumbers

    Background:
      Given There are 100 cucumbers

    @id_2f437d963a6364214611204427f3e279daba25f6c75d49946a71b9678145198f
    Scenario: 10 cucumbers
      When I eat 10 cucumbers
      Then I should have 90 cucumbers

    @id_db97bda424a07b7002aa7434b33eb7d2588bccb61d81a641f168665f7ef1e550
    Scenario: 99 cucumbers
      When I eat 99 cucumbers
      Then I should have 1 cucumber
