Skip to content

Commit

Permalink
Tests
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronn committed Jan 24, 2020
1 parent 75fa745 commit 52b3116
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/test_verification.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,12 @@ def test_email_unverified_to_verified_and_back(self):
verify_callback_response = self.client.post(self.callback_verify, {'email': email2, 'token': verify_token.key})
print(verify_token.id, file=sys.stderr)
print(verify_token.user.id, file=sys.stderr)
print(verify_token.user.email, file=sys.stderr)
print(verify_token.type, file=sys.stderr)
print(verify_token.is_active, file=sys.stderr)
print(verify_token.key, file=sys.stderr)
print(user.id, file=sys.stderr)
print(user.email, file=sys.stderr)

self.assertEqual(verify_callback_response.status_code, status.HTTP_200_OK)

Expand Down

0 comments on commit 52b3116

Please sign in to comment.