Skip to content

Commit

Permalink
add test
Browse files Browse the repository at this point in the history
  • Loading branch information
felipao-mx committed May 31, 2024
1 parent 88176ab commit 5eebc8e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/types/test_encrypted_string.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,3 +149,9 @@ def test_patch_kms_request(kms_connection_url: str) -> None:
kms_connection_url,
)
assert _EncryptionIO.kms_request != original_kms_request

user = User(name='foo', nss='123456')
user.save()
user_db = User.objects(nss=user.nss).first()
assert user_db.id == user.id
user.delete()

0 comments on commit 5eebc8e

Please sign in to comment.