Sha256: 206851938130d8ba30ca8e7c25dd4994dbd99ee6d096a72a0278399fa6ee4e5b
Contents?: true
Size: 967 Bytes
Versions: 3
Compression:
Stored size: 967 Bytes
Contents
Feature: Bootstrapping a new project In order to have the best chances of getting up and running with cucumber As a new cucumber user I want cucumber to give helpful error messages in basic situations Scenario: running cucumber against a non-existing feature file 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. (Errno::ENOENT) """ Scenario: does not load ruby files in root if features directory is missing 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 it should fail with exactly: """ No such file or directory - features. Please create a features directory to get started. (Errno::ENOENT) """
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
cucumber-1.3.2 | features/bootstrap.feature |
cucumber-1.3.1 | features/bootstrap.feature |
cucumber-1.3.0 | features/bootstrap.feature |