Feature: Data tables methods
  Tables are handy for passing a list of values to a step definition.
  Just like Doc Strings, Data Tables will be passed to the step definition as the last argument.

  @id_a7417f8769e75655b548fe035eff4221c959e60625b1e84c80139128e0bfc1f5
  Scenario: raw
    Given the following table:
      | Cucumber     | Cucumis sativus |
      | Burr Gherkin | Cucumis anguria |
    Then raw method returns array with all table rows

  @id_1e5da15206989531d100699c1d35a19d28a37fd2f8de62676e06372616eb9cf7
  Scenario: rows
    Given the following table:
      | Vegetable | Rating |
      | Brocolli  | 2      |
      | Cucumber  | 10     |
    Then rows method returns array with all table rows except first

  @id_f7728c6bbfd31a0258f8b566be42597b5d537fc5f35d64d2a41e5dab853f14c9
  Scenario: rowsHash
    Given the following table:
      | Cucumber     | Cucumis sativus |
      | Burr Gherkin | Cucumis anguria |
    Then rowsHash method returns object with key-value pairs from rows

  @id_c663069e0081f3c4dbc82c1a481ac7445f3b500217fac0282f3566143990c1d0
  Scenario: hashes
    Given the following table:
      | Vegetable | Rating |
      | Brocolli  | 2      |
      | Cucumber  | 10     |
    Then hashes method returns array with row hash objects
