Jeroen van Ingen wrote in post #960472: > I have the following test: > Feature: Test the login for all roles > In order to login > As user > I need to provide my password and username > > Scenario Outline: Test login for role > Given user should exist with email: "[email protected]", name: > "tester" > And the user with email: "[email protected]" is a "<role>" > And I am on login_path > And I should see "Inloggen" within "h1" > When I fill in "login" with "[email protected]" > And I fill in "password" with "123456" > And I press "login" > And I should see "Welcome." > And I should not see "Inloggen" within "h1" > > Examples: > | role | > | admin | > | Retailer | > | Client | > | superuser | > | tester | > > I know that it fails on this line 'And I should see "Welcome."' for 2 > of the 5 tests. But Cucumber doesn't give which example fails.
If you turn on HTML output, I believe it will mark the failing examples in red. Best, -- Marnen Laibow-Koser http://www.marnen.org [email protected] -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

