Gherkin.Scenario (Cucumber v0.4.1)
View SourceRepresents a Gherkin Scenario section.
A Scenario is a concrete example that illustrates a business rule. It consists of a name, a list of steps, optional tags for filtering, and the line number where it appears in the source file.
Summary
Types
@type t() :: %Gherkin.Scenario{ line: non_neg_integer() | nil, name: String.t(), steps: [Gherkin.Step.t()], tags: [String.t()] }