Sha256: ae594df928c242ac962ffbf88cb9880007b25a4b08b8f8be25018583d85c7589

Contents?: true

Size: 1.03 KB

Versions: 22

Compression:

Stored size: 1.03 KB

Contents

Feature: Tests can be manipulated in various ways.


  Acceptance criteria

  Tests can be manipulated:
    1. outlines can have rows added and removed


  Background: Test file setup.
    Given the following feature file:
    """
    Feature: A feature containing our starting outline.

      Scenario Outline:
        Given this *parameterized* step takes a table:
          | <param1> |
          | <param2> |
        Then I don't really need another step
      Examples: Only one row to start with
        | param1 | param2 |
        | x      | y      |
    """
    And parameter delimiters of "*" and "*"
    And the file is read

  Scenario: Rows can be added to an outline
    When the test example block has the following rows added to it:
      | 1,2 |
    Then the test example block rows are as follows:
      | x,y |
      | 1,2 |

  Scenario: Rows can be removed from an outline
    When the test example block has the following rows removed from it:
      | x,y |
    Then the test example block has no rows

Version data entries

22 entries across 22 versions & 2 rubygems

Version Path
cucumber_analytics-1.6.0 testing/cucumber/features/analysis/test_manipulation.feature
cuke_modeler-0.4.1 features/analysis/test_manipulation.feature
cuke_modeler-0.4.0 features/analysis/test_manipulation.feature
cuke_modeler-0.3.0 features/analysis/test_manipulation.feature
cuke_modeler-0.2.0 features/analysis/test_manipulation.feature
cuke_modeler-0.1.0 features/analysis/test_manipulation.feature
cucumber_analytics-1.5.2 features/analysis/test_manipulation.feature
cuke_modeler-0.0.2 features/analysis/test_manipulation.feature
cuke_modeler-0.0.1 features/analysis/test_manipulation.feature
cucumber_analytics-1.5.1 features/analysis/test_manipulation.feature
cucumber_analytics-1.5.0 features/analysis/test_manipulation.feature
cucumber_analytics-1.4.2 features/analysis/test_manipulation.feature
cucumber_analytics-1.4.1 features/analysis/test_manipulation.feature
cucumber_analytics-1.4.0 features/analysis/test_manipulation.feature
cucumber_analytics-1.3.0 features/analysis/test_manipulation.feature
cucumber_analytics-1.2.0 features/analysis/test_manipulation.feature
cucumber_analytics-1.1.1 features/analysis/test_manipulation.feature
cucumber_analytics-1.0.0 features/analysis/test_manipulation.feature
cucumber_analytics-0.0.9 features/analysis/test_manipulation.feature
cucumber_analytics-0.0.8 features/analysis/test_manipulation.feature