Sha256: b0bb370b2cee48b3e23ff22e44cd770f1a6946f320c7611924d1833c10212a6c

Contents?: true

Size: 1.12 KB

Versions: 7

Compression:

Stored size: 1.12 KB

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

  @aggregate_failures
  Scenario: [ERROR] boss monster (aggregate_failures)

    Even if error occurs during steps, test will run to the end

    Given there is a boss monster
     When I attack it
     Then it should die
     When I attack it
     Then it should die
     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

7 entries across 7 versions & 1 rubygems

Version Path
turnip_formatter-0.8.0 example/spec/features/basic.feature
turnip_formatter-0.7.2 example/spec/features/basic.feature
turnip_formatter-0.7.1 example/spec/features/basic.feature
turnip_formatter-0.7.0 example/spec/features/basic.feature
turnip_formatter-0.6.1 example/spec/features/basic.feature
turnip_formatter-0.6.0 example/spec/features/basic.feature
turnip_formatter-0.6.0.pre.beta.7 example/spec/features/basic.feature