hi im working with rails in action

having problem with this scenario

Feature: Viewing projects
In order to assign tickets to a project
As a user
I want to be able to see a list of available projects


Scenario: Listing all projects
    Given there is a project called "TextMate 2"
    And I am on the homepage
    When I follow "TextMate 2"
    Then I should be on the project page for "TextMate 2"

and currently having problem in writing cucumber scenarios the book is a bit outdated in cucumber anyone know a blog or site that fixed the revisions of cucumber?

i found this one but its only in chapter 3

thanks in advance more power

link|improve this question

39% accept rate
feedback

1 Answer

up vote 1 down vote accepted

If you are using the latest version of cucumber it no longer supports web steps such as "I follow" "I see" as they do not help to describe the behavior of the system. It is better to use the latest version and refactor your cucumber steps.

Given a project exists in the system
When I view the project
Then the correct data should be displayed

That allows you to move the web step stuff (I follow, I should see etc) into the the scenario steps themselves and makes your scenarios much more expressive without the needless detail.

If that doesn't sound to appealing or you want to follow the book examples I suggest you use an older version of cucumber, 1.0.6 should be low enough, but check what version they use in the book.

That said, I strongly recommend the first option so you learn to use Cucumber well.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.