File size: 365 Bytes
e4b9a7b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # -*- coding: utf-8 -*-
# SPDX-FileCopyrightText: 2016-2025 PyThaiNLP Project
# SPDX-FileType: SOURCE
# SPDX-License-Identifier: Apache-2.0
import unittest
from pythainlp.transliterate import transliterate
class TransliterateICUTestCase(unittest.TestCase):
def test_transliterate(self):
self.assertEqual(transliterate("แมว", "pyicu"), "mæw")
|