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.
Cucumber only gives the failing line of the Scenario Outline and not
from the Examples.
Does anyone know how to get for which example it fails?

-- 
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.

Reply via email to