Security update for permissions_by_term
[yaffs-website] / vendor / behat / gherkin / tests / Behat / Gherkin / Fixtures / features / outline_with_spaces.feature
1 Feature: Login
2   To ensure the safety of the application
3   A regular user of the system
4   Must authenticate before using the app
5
6
7   Scenario Outline: Failed Login
8     Given the user "known_user"
9
10     When I go to the main page
11     Then I should see the login form
12
13     When I fill in "login" with "<login>"
14     And I fill in "password" with "<password>"
15     And I press "Log In"
16     Then the login request should fail
17     And I should see the error message "Login or Password incorrect"
18
19     Examples:
20       | login        | password       |
21       |              |                |
22       | unknown_user |                |
23       | known_user   |                |
24       |              | wrong_password |
25       |              | known_userpass |
26       | unknown_user | wrong_password |
27       | unknown_user | known_userpass |
28       | known_user   | wrong_password |