Skip to content

Commit

Permalink
More tests for invalid fields on sign_up test
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaschabariberi committed Dec 4, 2019
1 parent 2358c52 commit ac06c22
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion src/app/features/001_sign_up.feature
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,20 @@ Scenario Outline: User try to create a new account with invalid data

Examples:
| form field | value |
| user_first_name | |
| user_last_name | |
| user_nickname | |
| user_birth_date | |
| user_email | |
| user_email | emailinvalido.com |
| user_password_confirmation | senha errada |
| user_email | emailinvalido@empresa |
| user_password | |
| user_password_confirmation | |
| user_password_confirmation | confirmacao errada |
| user_country | |
| user_state | |
| user_state | São Paulo |
| user_city | |

Scenario: User try to create a new account with invalid password format
Given I am on the create account page
Expand Down

0 comments on commit ac06c22

Please sign in to comment.