Sha256: c0e9a933779a513d6915a2ba6d7949126ac00ea6a3013162131b9c01c7ee2380

Contents?: true

Size: 659 Bytes

Versions: 5

Compression:

Stored size: 659 Bytes

Contents

@requires-rails-version-42
Feature: Annotations

  I order to track my development progress
  As a developer
  I should be able to list annotations in my features

  Background:
    Given I have created a new Rails app "test-app" with no database and installed cucumber-rails
    And I write to "features/tests.feature" with:
      """
      Feature: Tests
        Scenario: Tests
          # TODO: When I go to the products page
      """

  Scenario: See annotations in .feature file
    When I run `bundle exec rake notes`
    Then it should pass with:
      """
      features/tests.feature:
        * [ 3] [TODO] When I go to the products page
      """

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
cucumber-rails-1.6.0 features/annotations.feature
cucumber-rails-1.5.0 features/annotations.feature
cucumber-rails-1.4.5 features/annotations.feature
cucumber-rails-1.4.4 features/annotations.feature
cucumber-rails-1.4.3 features/annotations.feature