Skip to content

Commit

Permalink
solver error on register User
Browse files Browse the repository at this point in the history
  • Loading branch information
Troter2 committed Oct 17, 2024
1 parent bd682ab commit 95febc7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/resources/features/RegisterUser.feature
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ Feature: Register User
Given I'm not logged in
When I register a new user with username "user", email "user@sample.app" and password ""
Then The response code is 400
And The error message is "must not be null"
And The error message is "must not be blank"
And It has not been created a user with username "user"

Scenario: Register user with empty email
Given I'm not logged in
When I register a new user with username "user", email "" and password "password"
Then The response code is 400
And The error message is "must not be null"
And The error message is "must not be blank"
And It has not been created a user with username "user"

Scenario: Register user with invalid email
Expand Down

0 comments on commit 95febc7

Please sign in to comment.