You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 28, 2019. It is now read-only.
Feature:
Scenario: one step with a doc string AND a data tableGiven the following things:
""" This is a doc string """ | and | this | is | | a | data | table |Given some other step
Running Cucumber against it will display:
Feature:
Scenario: one step with a doc string AND a data table # features/test.feature:2
Given the following things: # features/test.feature:3""" This is a doc string"""
Given some other step # features/test.feature:9| and | this | is || a | data | table |
I would have expected Gherkin's parser to throw an exception on this. And Cucumber should certainly not pass the data table to the second step.
Also:
Feature:
Scenario: several doc strings passed to one stepGiven the following strings:
""" This is the first string """""" This is the second string """
Outputs:
Feature:
Scenario: several doc strings passed to one step # features/test.feature:2
Given the following strings: # features/test.feature:3""" This is the second string"""
Same goes here; Gherkin should yell at me.
The text was updated successfully, but these errors were encountered:
Consider the following scenario:
Running Cucumber against it will display:
I would have expected Gherkin's parser to throw an exception on this. And Cucumber should certainly not pass the data table to the second step.
Also:
Outputs:
Same goes here; Gherkin should yell at me.
The text was updated successfully, but these errors were encountered: