Sha256: 03111270e84b7b2b866a596d35194ce773a906ed09d8a0f6b8d155b186fce20a

Contents?: true

Size: 1.19 KB

Versions: 4

Compression:

Stored size: 1.19 KB

Contents

Feature: Using features
  To test websites
  A cucumber feature
  Must be created

  Scenario: Create a feature
    Given cucumber-nagios is installed
    And a project called "more-great-tests" is created and frozen
    When I generate a new feature called "login" for "github.com"
    Then a feature file should exist for "login" on "github.com"

  Scenario: Run a successful feature
    Given a project called "passing-features" is created and frozen
    When I generate a new feature called "homepage" for "github.com"
    Then the "homepage" feature on "github.com" should exit cleanly

  Scenario: Run a failing feature
    Given a project called "failing-features" is created and frozen
    When I generate a new feature called "profile" for "github.com"
    And the "profile" feature on "github.com" checks for something preposterous
    Then the "profile" feature on "github.com" should not exit cleanly

  Scenario: webrat.log output
    Given a project called "passing-features" is created and frozen
    When I generate a new feature called "homepage" for "github.com"
    Then the "homepage" feature on "github.com" should exit cleanly
    Then "webrat.log" in the "passing-features" project should not exist

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
cucumber-nagios-0.8.5 features/using.feature
cucumber-nagios-0.8.4 features/using.feature
cucumber-nagios-0.8.3 features/using.feature
cucumber-nagios-0.8.2 features/using.feature