Gherkin.Scenario (Cucumber v0.3.1)

View Source

Represents a Gherkin Scenario section.

A Scenario is a concrete example that illustrates a business rule. It consists of a name, a list of steps, and optional tags for filtering.

Summary

Types

t()

@type t() :: %Gherkin.Scenario{
  name: String.t(),
  steps: [Gherkin.Step.t()],
  tags: [String.t()]
}