Exemplo n.º 1
0
 def test_byte_string(self):
     byte_str = utils.to_bytes(self.example_str)
     result = utils.latinify(byte_str)
     self.assertEqual(result, self.expected_output)
Exemplo n.º 2
0
 def test_plain_string(self):
     result = utils.latinify(self.example_str)
     self.assertEqual(result, self.expected_output)