Sha256: 5118b3fb36d4b57e89b58427e8d976db89f62ad7aa2e37cef224b36027242848
Contents?: true
Size: 1.21 KB
Versions: 2
Compression:
Stored size: 1.21 KB
Contents
Feature: Tag elements can be modeled. Acceptance criteria 1. All conceptual pieces of a tag can be modeled: - the tag's name - the tags's source line - the tags's raw element 2. Features can be outputted in a convenient form Background: Test file setup. Given the following feature file: """ @feature_tag Feature: @outline_tag Scenario Outline: * a step @example_tag Examples: | a param | """ When the file is read Scenario: The raw tag element is modeled. Then the feature tag correctly stores its underlying implementation And the test tag correctly stores its underlying implementation And the example tag correctly stores its underlying implementation Scenario: The tag's source line is modeled. Then the feature tag source line "1" And the test tag source line "4" And the example tag source line "8" Scenario: The tag name is modeled. Then the feature tag name is "@feature_tag" And the test tag name is "@outline_tag" And the example tag name is "@example_tag" Scenario: Convenient output of a tag Then the tag has convenient output
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
cucumber_analytics-1.6.0 | testing/cucumber/features/modeling/tag_modeling.feature |
cucumber_analytics-1.5.2 | features/modeling/tag_modeling.feature |