コード例 #1
0
ファイル: test_2_segment_speech.py プロジェクト: maxsu/borb
import borb
from pathlib import Path

borb.conf.cache = Path('test')
borb.speak('Henlo, I am borb.')

# Setup
borb.conf.page_size = 10

# Test
borb.speak('This sentence will be\n spoken in a few chunks')

borb.speak('This should \n\r work')

# Teardown
for x in borb.conf.cache.glob('*.mp3'):
    x.unlink()

# clean('test \r test') = 'test \n test'
# 'The CHERRY_PICK_HEAD ref is set to point at the commit that introduced the change that is difficult to apply.\r\n\r\nPaths in which the change applied cleanly are updated both in the index file and in your working tree.\r\n\r\nFor conflicting paths, the index file records up to three versions, as described in the "TRUE MERGE" section of git-merge(1). The working tree files will include a description of the conflict bracketed by the usual conflict markers <<<<<<< and >>>>>>>.\r\n\r\nNo other modifications are made.\r\n\r\nSee git-merge(1) for some hints on resolving such conflicts.'"
# 'The CHERRY_PICK_HEAD ref is set to point at the commit that introduced the change that is difficult to apply.\nPaths in which the change applied cleanly are updated both in the index file and in your working tree.\nFor conflicting paths, the index file records up to three versions, as described in the "TRUE MERGE" section of git-merge(1). The working tree files will include a description of the conflict bracketed by the usual conflict markers <<<<<<< and >>>>>>>.\nNo other modifications are made.\nSee git-merge(1) for some hints on resolving such conflicts.'
コード例 #2
0
 def test_whitepspace(value):
     borb.speak(value)
コード例 #3
0
 def test_empty(value):
     borb.speak()
コード例 #4
0
 def test_mediumstring(value):
     testString = """line 1
             line 2
             line 3"""
     borb.speak(testString)
コード例 #5
0
 def test_small_string(value):
     assert borb.speak(value)