mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 10:53:28 -05: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)
|