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