Sha256: 56cc8d3599f0c48c33d55e0fa3ef62f9b2cfc219a1d5f658c80fa56c334f082a
Contents?: true
Size: 794 Bytes
Versions: 2
Compression:
Stored size: 794 Bytes
Contents
Feature: Cucumber In order to use cucumber conveniently As a developer I want shoe to give me a rake task Scenario: Running rake --tasks in a shoe project without Cucumber features Given I have created a project called "my_project" When I run bundle exec rake --tasks inside "my_project" Then I should not see "rake cucumber" on standard out Scenario: Running rake --tasks in a shoe project with Cucumber features Given I have created a project called "my_project" And I have appended "gem 'cucumber'" to "my_project/Gemfile" And I have created a directory called "my_project/features" When I run bundle exec rake --tasks inside "my_project" Then I should see "rake cucumber" on standard out And I should see "rake cucumber:wip" on standard out
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
shoe-0.4.0 | features/cucumber.feature |
shoe-0.3.0 | features/cucumber.feature |