Tests: Simplify test names in test_string_list_encryptor.py

This commit is contained in:
Mike Salvatore 2021-09-22 07:44:54 -04:00
parent ba4aabb67f
commit 67b23c42bf
1 changed files with 3 additions and 2 deletions

View File

@ -12,13 +12,14 @@ def uses_encryptor(data_for_tests_dir):
initialize_encryptor(data_for_tests_dir)
def test_string_list_encryptor(uses_encryptor):
def test_encryption_and_decryption(uses_encryptor):
encrypted_list = StringListEncryptor.encrypt(MOCK_STRING_LIST)
assert not encrypted_list == MOCK_STRING_LIST
decrypted_list = StringListEncryptor.decrypt(encrypted_list)
assert decrypted_list == MOCK_STRING_LIST
def test_string_list_encryptor__empty_list(uses_encryptor):
def test_empty_list(uses_encryptor):
# Tests that no errors are raised
encrypted_list = StringListEncryptor.encrypt(EMPTY_LIST)
StringListEncryptor.decrypt(encrypted_list)