Test Coverage #33
Code-Over-Time
announced in
Tasks: Junior
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Category: Python Backend Development
Level: Junior
Description
There is a set of tests for the Varcade Games web server that verify the account creation functionality.
These tests can be found in
website/server/test/game_portal/accounts/test_accounts.py
.There is a test that verifies that the system returns an error if you try to create a user with a password that is not strong enough:
test_create_user_with_short_password
.We do not, however, have a test that verifies that the system will return an error if you supply an invalid email address.
We need to add a new test called
test_create_user_with_invalid_email
. This test should verify that an error is returned if you supply an invalid email (eg: this would not be a valid email: 'myname-at-email.com').Deliverable
Acceptance Criteria
Task Tips!
Beta Was this translation helpful? Give feedback.
All reactions