def test_that_char_to_encoded_does_not_return_a_value_greater_than_end_of_alphabet(self):
     result = encode.char_to_encoded('z')
     self.assertTrue(122 > result)
 def test_that_we_rotate_thirteen(self):
     result = encode.char_to_encoded('a')
     self.assertEqual(110, result)