Beispiel #1
0
 def test_decrypt_special_character(self):
     decrypted = decrypt("#jgnnq yqtnf", 2)
     self.assertEquals(decrypted, "#hello world")
Beispiel #2
0
 def test_decrypt_with_key(self):
     decrypted = decrypt("jgnnq yqtnf", 2)
     self.assertEquals(decrypted, "hello world")