scenari icon indicating copy to clipboard operation
scenari copied to clipboard

Feature Request: Multiline Strings

Open christianhujer opened this issue 2 years ago • 1 comments

Gherkin supports multiline strings, like this:

Feature: Conway's Game of Life
  Scenario: Blinker
    Given the following universe:
      """
       x
       x
       x
      """
    Then the next generation MUST be:
      """
      
      xxx
      
      """

scenari believes that this is an invalid feature file due to the multiline string arguments.

christianhujer avatar Sep 12 '21 11:09 christianhujer

Multiline strings are not supported for now, both on scenari v1 or v2. This is a nice feature, but we need to figured out what the string will look like when parsed from instaparse.

dpanza avatar Sep 21 '21 09:09 dpanza