Ejemplo n.º 1
0
 def test_simple(self):
     encrypted = encrypt("Hello World")
     self.assertEqual(encrypted, "dlroW olleH")
Ejemplo n.º 2
0
 def test_empty(self):
     encrypted = encrypt("")
     self.assertEqual(encrypted, "")