Sha256: d2373ffc37b99ea2edbf003dcc66bb110b68a3c29fc140feaf9e179ca0449d49

Contents?: true

Size: 834 Bytes

Versions: 1

Compression:

Stored size: 834 Bytes

Contents

Feature: Fixing Bundler Pre
  In order to keep fix a problem with bundler and rails
  As a user with cucumber-rails outside of test group in my Gemfile
  I want run features without errors
  
  @bundler-pre
  Scenario: Install Cucumber-Rails with bundler prerelease
    Given I have created a new Rails 3 app and installed cucumber-rails, accidentally outside of the test group in my Gemfile
    And I successfully run `rake db:migrate`
    And I write to "features/tests.feature" with:
      """
      Feature: Tests
        Scenario: Tests
          When I go to the home page
      """
    And I run `bundle exec rake cucumber`
    Then it should pass with:
      """
      1 scenario (1 passed)
      1 step (1 passed)
      """
    And the output should contain "WARNING:"
    And the output should contain ":require => false"


Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
cucumber-rails-1.3.1 features/fixing_bundler_pre.feature