summaryrefslogtreecommitdiff
path: root/tests/test_tts.py
blob: 98943579009293a44a02389c636780b7002f94c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env python2
# -*- coding: utf-8-*-
import unittest
from client import tts


class TestTTS(unittest.TestCase):
    def testTTS(self):
        tts_engine = tts.get_engine_by_slug('dummy-tts')
        tts_instance = tts_engine()
        tts_instance.say('This is a test.')