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