Why are all response bodies after the first blank in Cucumber?
- by James A. Rosen
I'm using Cucumber (0.6.3), Cucumber-Rails (0.3.0), Webrat (0.7.0), and Rails (2.3.5) for some tests. The following scenario passes just fine:
Scenario: load one page
Given I am on the home page
Then I should see "Welcome"
The following, however, fails:
Scenario: load two pages
Given I am on the FAQ pag
When I go to the home page
Then…