Sha256: 8059b16532a78d314570debc798be1838a59118e83187854a990657ca21b7134

Contents?: true

Size: 792 Bytes

Versions: 2

Compression:

Stored size: 792 Bytes

Contents

Feature: Test
  In order to run tests
  As a developer
  I want shoe to give me a rake task

  Scenario: Running rake --tasks in a shoe project without tests
    Given I have created a project called "my_project"
    And I have run git init inside "my_project"
    When I run bundle exec rake --tasks inside "my_project"
    Then I should not see "rake test" on standard out

  Scenario: Running rake --tasks in a shoe project with tests
    Given I have created a project called "my_project"
    And I have run git init inside "my_project"
    And I have created a directory called "my_project/test"
    And I have created a file called "my_project/test/foo_test.rb" containing ""
    When I run bundle exec rake --tasks inside "my_project"
    Then I should see "rake test" on standard out

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
shoe-0.5.1 features/test.feature
shoe-0.5.0 features/test.feature