Sha256: 1066d6874f8d64b46335b1661e82bbe34e5acb35e4368c55a56ad95b47b1e78f

Contents?: true

Size: 729 Bytes

Versions: 1

Compression:

Stored size: 729 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 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

1 entries across 1 versions & 1 rubygems

Version Path
shoe-0.2.0 features/cucumber.feature