Feature: Scenario Outline
  The Scenario Outline keyword can be used to run the same Scenario multiple times,
  with different combinations of values.

  @id_341c28b3f9f1d07df39a34e00fe65aa943d9c3c45e7c6b6b69a5646855053378
  Scenario Outline: Eating cucumbers
    Given There are <start> cucumbers
    When I eat <eat> cucumbers
    Then I should have <left> cucumbers

    Examples:
      | start | eat | left |
      | 12    | 5   | 7    |
      | 20    | 5   | 15   |
