Skip to content

Commit

Permalink
Fix pytest error
Browse files Browse the repository at this point in the history
  • Loading branch information
yaelnoyman1 committed Jan 19, 2023
1 parent 20983f1 commit 8bf4750
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions projboard/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,20 @@
CONTENT = "I'm not gonna write all that!"
VALID_USER = "smarticleUser"
VALID_EMAIL = "[email protected]"
VALID_NAME = "smarticleName"
VALID_PASSWORD = "smarticlePassword"
INVALID_EMAIL = "user.telhai.ac.il"
INVALID_PASSWORD_MISMATCH = "smarticlePasswordMismatch"
LOGIN_PATH = "login/login.html"
SIGNUP_PATH = "/signup/"
MISMATCH_MESSAGE_ERROR = "Unsuccessful registration. Invalid information."
VALID_DATA = {
'email': '[email protected]',
'name': 'John Doe',
'nickname': 'johndoe',
'password': 'password',
'password_confirm': 'password',
}


@pytest.fixture
Expand Down

0 comments on commit 8bf4750

Please sign in to comment.