github.com/lonnblad/godog@v0.7.14-0.20200306004719-1b0cb3259847/formatter-tests/features/scenario_outline.feature (about) 1 @outline @tag 2 Feature: outline 3 4 @scenario 5 Scenario Outline: outline 6 Given passing step 7 When passing step 8 Then odd <odd> and even <even> number 9 10 @tagged 11 Examples: tagged 12 | odd | even | 13 | 1 | 2 | 14 | 2 | 0 | 15 | 3 | 11 | 16 17 @tag2 18 Examples: 19 | odd | even | 20 | 1 | 14 | 21 | 3 | 9 |