Sha256: dcbf23621b326bb3b10de07e5e5836c0b15e0c4ea8a79f53133a5ef8c9678be0

Contents?: true

Size: 810 Bytes

Versions: 2

Compression:

Stored size: 810 Bytes

Contents

Feature: Battle a monster

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

  Scenario: [ERROR] strong monster

    This scenario will not success because his attacks can't defeat strong monster

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

  Scenario: [PENDING] spell magic

    This scenario will not success because he can't cast spell

    Given there is a strong monster
     When I cast a spell 'fireball'
      And I attack it
     Then it should die
      And Fanfare

  @magician
  Scenario: spell magic

    `magician` can cast spell.

    Given there is a strong monster
     When I cast a spell 'fireball'
      And I attack it
     Then it should die
      And Fanfare

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
turnip_formatter-0.6.0.pre.beta.6 example/spec/features/basic.feature
turnip_formatter-0.6.0.pre.beta.5 example/spec/features/basic.feature