mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-17 03:40:04 -04:00
10 lines
200 B
Python
10 lines
200 B
Python
from app.main import encryption
|
|
|
|
|
|
def test_encryption(notifications_admin):
|
|
value = 's3curePassword!'
|
|
|
|
encrypted = encryption.encrypt(value)
|
|
|
|
assert encrypted == encryption.encrypt(value)
|