8 lines
197 B
Python
8 lines
197 B
Python
|
from unittest import TestCase
|
||
|
|
||
|
from benchmark.caesar_cipher import decrypt
|
||
|
|
||
|
|
||
|
class Test_decrypt(TestCase):
|
||
|
def test_decrypt_1(self):
|
||
|
assert decrypt(strng='\\nEGQ&', key=41) == '3E{}(ý'
|