Sha256: 3baa20b017fccbc9741152a2140af5e9de7af030634faf14f2d796ba023681d6

Contents?: true

Size: 671 Bytes

Versions: 1

Compression:

Stored size: 671 Bytes

Contents

# Based on turnip/examples

Feature: Battle a monster
  Scenario: normal monster
    Given there is a monster
     When I attack it
     Then it should die
      And Fanfare

  Scenario Outline: a simple outline
      Given there is a monster with <hp> hitpoints
      When I attack the monster and do <damage> points damage
      Then the monster should be <state>

      Examples:
        | hp | damage | state |
        | 10 |     13 | alive |
        | 12 |      8 | dead  |
        |  3 |     10 | alive |
        |  8 |      5 | dead  |

  Scenario: strong monster
    Given there is a strong monster
     When I attack it
     Then it should die
      And Fanfare

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
turnip-parallel_tests-0.0.2 spec/data/features/songs.feature