mirror of
https://github.com/wassname/TTS.git
synced 2026-09-20 12:30:22 +08:00
8 lines
182 B
Python
8 lines
182 B
Python
import unittest
|
|
|
|
from utils.text import phonemes
|
|
|
|
class SymbolsTest(unittest.TestCase):
|
|
def test_uniqueness(self):
|
|
assert sorted(phonemes) == sorted(list(set(phonemes)))
|