summaryrefslogtreecommitdiff
path: root/tests/examplefiles/example.feature
blob: a26268da7cb35c405d4a5354f2368b7ad1633d3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# First comment
Feature: My amazing feature
  Feature description line 1
  Feature description line 2

#comment
Scenario Outline: My detailed scenario #string
  Given That <x> is set
  When When I <subtract>
  Then I should get the <remain#der>

  # indented comment
  Examples:
    | x    | subtract | remain#der |
    | 12   | 5\|3     |  #73       |
    | #the | 10       |  15        |