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