Sha256: cae0be6096aa669d9c32087a07b915fbe32bb4a718b122ccf9373c7d64205b95

Contents?: true

Size: 866 Bytes

Versions: 10

Compression:

Stored size: 866 Bytes

Contents

Feature: Getting started

  To get started, just open a command prompt in an empty directory and run 
  `cucumber`. You'll be prompted for what to do next.

  @spawn
  Scenario: Run Cucumber in an empty directory
    Given a directory without standard Cucumber project directory structure
    When I run `cucumber`
    Then it should fail with:
      """
      No such file or directory - features. Please create a features directory to get started.
      """

  Scenario: Accidentally run Cucumber in a folder with Ruby files in it.
    Given a directory without standard Cucumber project directory structure
    And a file named "should_not_load.rb" with:
      """
      puts 'this will not be shown'
      """
    When I run `cucumber`
    Then the exit status should be 1
    And the output should not contain:
      """
      this will not be shown

      """

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
cucumber-2.0.0.rc.5 features/docs/getting_started.feature
cucumber-2.0.0.rc.4 features/docs/getting_started.feature
cucumber-2.0.0.rc.3 features/docs/getting_started.feature
cucumber-2.0.0.rc.2 features/docs/getting_started.feature
cucumber-2.0.0.rc.1 features/docs/getting_started.feature
cucumber-2.0.0.beta.5 features/docs/getting_started.feature
cucumber-2.0.0.beta.4 features/docs/getting_started.feature
cucumber-2.0.0.beta.3 features/docs/getting_started.feature
cucumber-2.0.0.beta.2 features/docs/getting_started.feature
cucumber-2.0.0.beta.1 features/docs/getting_started.feature