Sha256: 8834deeaa5b047ad9d2bb4477e7c5c86f31a05591627393f7ca97b50d7b20dc0

Contents?: true

Size: 1.43 KB

Versions: 3

Compression:

Stored size: 1.43 KB

Contents

Feature: Table elements can be modeled.


  Acceptance criteria

    1. All conceptual pieces of a table can be modeled:
      - the table's contents
      - the table's raw element

    2. Tables can be outputted in a convenient form


  Background: Test file setup.
    Given the following feature file:
    """
    Feature:

      Scenario:
        * some data filled step:
          | value 1 | value 2 |
          | value 3 | value 4 |
        * some data filled step:
          | value 1 |
          | value 2 |
    """
    When the file is read


  Scenario: The table's contents are modeled.
    Then the step "1" table has the following contents:
      | value 1 | value 2 |
      | value 3 | value 4 |
    And the step "2" table has the following contents:
      | value 1 |
      | value 2 |

  Scenario: The raw table element is modeled.
    Then the table correctly stores its underlying implementation

  Scenario: Convenient output of a table
    Then the table has convenient output

  @redundant
  Scenario Outline: Table models pass all other specifications
  Exact specifications detailing the API for table models.
    Given that there are "<additional specifications>" detailing models
    When the corresponding specifications are run
    Then all of those specifications are met
  Examples:
    | additional specifications |
    | table_unit_spec.rb        |
    | table_integration_spec.rb |

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
cuke_modeler-0.0.2 features/modeling/table_modeling.feature
cuke_modeler-0.0.1 features/modeling/table_modeling.feature
cucumber_analytics-1.5.1 features/modeling/table_modeling.feature